None
**Instruments Affected**: NIRSpec
Tested on CV3 data
The library imports relevant to this notebook are aready taken care of by importing PTT.
NOTE: This notebook assumes that the pipeline version to be tested is already installed and its environment is activated.
To be able to run this notebook you need to install nptt.
If all goes well you will be able to import PTT.
# Create a temporary directory to hold notebook output, and change the working directory to that directory.
import shutil
import os
from tempfile import TemporaryDirectory
use_tempdir = True
if use_tempdir:
# Create temporary directory
data_dir = TemporaryDirectory()
# Save original directory
orig_dir = os.getcwd()
# Move to new directory
os.chdir(data_dir.name)
# For info, print out where the script is running
print("Running in {}".format(os.getcwd()))
Running in /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa
import os
if 'CRDS_CACHE_TYPE' in os.environ:
if os.environ['CRDS_CACHE_TYPE'] == 'local':
os.environ['CRDS_PATH'] = os.path.join(os.environ['HOME'], 'crds', 'cache')
elif os.path.isdir(os.environ['CRDS_CACHE_TYPE']):
os.environ['CRDS_PATH'] = os.environ['CRDS_CACHE_TYPE']
print('CRDS cache location: {}'.format(os.environ['CRDS_PATH']))
CRDS cache location: /grp/crds/cache
import warnings
import psutil
from astropy.io import fits
# Only print a DeprecationWarning the first time it shows up, not every time.
with warnings.catch_warnings():
warnings.simplefilter("once", category=DeprecationWarning)
import jwst
from jwst.pipeline.calwebb_detector1 import Detector1Pipeline
from jwst.assign_wcs.assign_wcs_step import AssignWcsStep
from jwst.msaflagopen.msaflagopen_step import MSAFlagOpenStep
from jwst.extract_2d.extract_2d_step import Extract2dStep
from jwst.srctype.srctype_step import SourceTypeStep
from jwst.wavecorr.wavecorr_step import WavecorrStep
from jwst.flatfield.flat_field_step import FlatFieldStep
from jwst.pathloss.pathloss_step import PathLossStep
from jwst.barshadow import BarShadowStep
from jwst import datamodels
# The latest version of NPTT is installed in the requirements text file at:
# /jwst_validation_notebooks/environment.yml
# import NPTT
import nirspec_pipe_testing_tool as nptt
# To get data from Artifactory
from ci_watson.artifactory_helpers import get_bigdata
2022-01-27 18:47:43,102 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/tweakwcs/tpwcs.py:21: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. if LooseVersion(gwcs.__version__) > '0.12.0': 2022-01-27 18:47:43,104 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/setuptools/_distutils/version.py:351: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. other = LooseVersion(other) 2022-01-27 18:47:43,226 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/tweakwcs/wcsimage.py:26: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. if LooseVersion(gwcs.__version__) > '0.12.0':
# Print the versions used for the pipeline and NPTT
pipeline_version = jwst.__version__
nptt_version = nptt.__version__
print("Using jwst pipeline version: ", pipeline_version)
print("Using NPTT version: ", nptt_version)
Using jwst pipeline version: 1.3.2 Using NPTT version: 1.1.21
The NIRSpec team implemented code for the barshadow step and then compared the output with the the pipeline. The test is considered passed if the difference between the two outputs is smaller than 5%, the error provided by the IDT team (or 0.0025 in absolute numbers).
For the test to be considered PASSED, every single MOS slitlet has to pass. If there is any failure, the whole test will be considered as FAILED.
The code for this test can be obtained from: https://github.com/spacetelescope/nirspec_pipe_testing_tool/blob/master/nirspec_pipe_testing_tool/calwebb_spec2_pytests/auxiliary_code/barshadow_testing.py.
Step description: https://jwst-pipeline.readthedocs.io/en/latest/jwst/barshadow/description.html
Pipeline code: https://github.com/spacetelescope/jwst/tree/master/jwst/barshadow
If the test PASSED this means that all slits, slitlets, or slices individually passed the test. However, if ony one individual MOS slitlet, the whole test will be reported as FAILED.
A short description and link to the page: https://outerspace.stsci.edu/pages/viewpage.action?spaceKey=JWSTCC&title=Vanilla+MSA+Bar+Shadow+Correction
Acronymns used un this notebook:
pipeline: calibration pipeline
spec2: spectroscopic calibration pipeline level 2b
PTT: NIRSpec pipeline testing tool (https://github.com/spacetelescope/nirspec_pipe_testing_tool)
The pipeline can be run from the command line in two variants: full or per step.
Tu run the spec2 pipeline in full use the command:
$ strun jwst.pipeline.Spec2Pipeline jwtest_rate.fits
Tu only run the barshadow step, use the command:
$ strun jwst.barshadow.BarShadowStep jwtest_previous_step_output.fits
These options are also callable from a script with the testing environment active. The Python call for running the pipeline in full or by step are:
$\gt$ from jwst.pipeline.calwebb_spec2 import Spec2Pipeline
$\gt$ Spec2Pipeline.call(jwtest_rate.fits)
or
$\gt$ from jwst.barshadow import BarShadowStep
$\gt$ BarShadowStep.call(jwtest_previous_step_output.fits)
PTT can run the spec2 pipeline either in full or per step, as well as the imaging pipeline in full. In this notebook we will use PTT to run the pipeline and the validation tests. To run PTT, follow the directions in the corresponding repo page.
All testing data is from the CV3 campaign. We chose these files because this is our most complete data set, i.e. all modes and filter-grating combinations.
Data used was for testing was only MOS:
testing_data = {
'mos_prism_clear':{
'uncal_file_nrs1': 'mos_prism_nrs1_uncal.fits',
'uncal_file_nrs2': 'mos_prism_nrs2_uncal.fits',
'msa_shutter_config': 'V0030006000104_msa.fits' },
'mos_g140m_f100lp':{
'uncal_file_nrs1': 'mos_g140m_line1_NRS1_uncal.fits',
'uncal_file_nrs2': 'mos_g140m_line1_NRS2_uncal.fits',
'msa_shutter_config': 'V8460001000101_msa.fits' }
}
# define function to pull data from Artifactory
def get_artifactory_file(data_set_dict, detector):
"""This function creates a list with all the files needed per detector to run the test.
Args:
data_set_dict: dictionary, contains inputs for a specific mode and configuration
detector: string, either nrs1 or nrs2
Returns:
data: list, contains all files needed to run test
"""
files2obtain = ['uncal_file_nrs1', 'msa_shutter_config']
data = []
for file in files2obtain:
data_file = None
try:
if '_nrs' in file and '2' in detector:
file = file.replace('_nrs1', '_nrs2')
data_file = get_bigdata('jwst_validation_notebooks',
'validation_data',
'nirspec_data',
data_set_dict[file])
except TypeError:
data.append(None)
continue
data.append(data_file)
return data
# Set common NPTT switches for this test
# accepted threshold difference with respect to benchmark files
barshadow_threshold_diff = 0.0025
# other variables
mode_used = 'MOS'
write_barshadow_files = False
show_final_fig = True
save_final_fig = False
show_intermediary_figs = False
save_intermediary_figs = False
# Get the data
results_dict = {}
detectors = ['nrs1', 'nrs2']
for mode_config, data_set_dict in testing_data.items():
for det in detectors:
print('Testing files for detector: ', det)
data = get_artifactory_file(data_set_dict, det)
uncal_file, msa_shutter_config = data
print('Working with uncal_file: ', uncal_file)
uncal_basename = os.path.basename(uncal_file)
# Run the stage 1 pipeline
rate_object = Detector1Pipeline.call(uncal_file)
# Make sure the MSA shutter configuration file is set up correctly
if msa_shutter_config is not None:
msa_metadata = rate_object.meta.instrument.msa_metadata_file
if msa_metadata is None or msa_metadata == 'N/A':
rate_object.meta.instrument.msa_metadata_file = msa_shutter_config
# Run the stage 2 pipeline steps
try:
pipe_object = AssignWcsStep.call(rate_object)
skip_file = False
except:
print('No open slits fall on detector ', det, '\n')
skip_file = True
if not skip_file:
pipe_object = MSAFlagOpenStep.call(pipe_object)
pipe_object = Extract2dStep.call(pipe_object)
pipe_object = SourceTypeStep.call(pipe_object)
pipe_object = WavecorrStep.call(pipe_object)
pipe_object = FlatFieldStep.call(pipe_object, save_interpolated_flat=False)
pathloss_object = PathLossStep.call(pipe_object)
barshadow_object = BarShadowStep.call(pathloss_object)
# Run the validation test
%matplotlib inline
result, _, _ = nptt.calwebb_spec2_pytests.auxiliary_code.barshadow_testing.run_barshadow_tests(
pathloss_object,
barshadow_object,
barshadow_threshold_diff=barshadow_threshold_diff,
save_final_figs=save_final_fig,
show_final_figs=show_final_fig,
save_intermediary_figs=save_intermediary_figs,
show_intermediary_figs=show_intermediary_figs,
write_barshadow_files=write_barshadow_files)
else:
result = 'skipped'
# Did the test passed
print("Did barshadow validation test passed? ", result, "\n\n")
rd = {uncal_basename: result}
results_dict.update(rd)
# close all open files
psutil.Process().open_files()
closing_files = []
for fd in psutil.Process().open_files():
if data_dir.name in fd.path:
closing_files.append(fd)
for fd in closing_files:
try:
print('Closing file: ', fd)
open(fd.fd).close()
except:
print('File already closed: ', fd)
Testing files for detector: nrs1 Working with uncal_file: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_prism_nrs1_uncal.fits
2022-01-27 18:47:50,863 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nirspec_pars-detector1pipeline_0004.asdf
2022-01-27 18:47:50,890 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2022-01-27 18:47:50,892 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2022-01-27 18:47:50,893 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2022-01-27 18:47:50,895 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2022-01-27 18:47:50,896 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2022-01-27 18:47:50,898 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2022-01-27 18:47:50,899 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2022-01-27 18:47:50,901 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2022-01-27 18:47:50,902 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2022-01-27 18:47:50,905 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2022-01-27 18:47:50,907 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2022-01-27 18:47:50,908 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2022-01-27 18:47:50,909 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2022-01-27 18:47:50,911 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2022-01-27 18:47:50,913 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2022-01-27 18:47:50,914 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2022-01-27 18:47:50,916 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
2022-01-27 18:47:51,096 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_prism_nrs1_uncal.fits',).
2022-01-27 18:47:51,106 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2022-01-27 18:47:51,294 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'mos_prism_nrs1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2022-01-27 18:47:51,347 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0086.fits'.
2022-01-27 18:47:51,351 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits'.
2022-01-27 18:47:51,355 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0018.fits'.
2022-01-27 18:47:51,358 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0010.fits'.
2022-01-27 18:47:51,361 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2022-01-27 18:47:51,362 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0018.fits'.
2022-01-27 18:47:51,365 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_refpix_0022.fits'.
2022-01-27 18:47:51,369 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2022-01-27 18:47:51,371 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2022-01-27 18:47:51,372 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0020.fits'.
2022-01-27 18:47:51,375 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0113.fits'.
2022-01-27 18:47:51,378 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2022-01-27 18:47:51,379 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2022-01-27 18:47:51,381 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2022-01-27 18:47:51,832 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:47:51,835 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:47:51,977 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2022-01-27 18:47:51,978 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2022-01-27 18:47:51,981 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2022-01-27 18:47:52,149 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:47:52,151 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:47:52,175 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0010.fits
2022-01-27 18:47:52,556 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2022-01-27 18:47:52,724 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:47:52,726 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:47:52,750 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0020.fits
2022-01-27 18:47:53,373 - stpipe.Detector1Pipeline.saturation - INFO - Detected 9869 saturated pixels
2022-01-27 18:47:53,411 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2022-01-27 18:47:53,438 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2022-01-27 18:47:53,620 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:47:53,622 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:47:53,623 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
2022-01-27 18:47:53,625 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2022-01-27 18:47:53,791 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:47:53,793 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:47:53,821 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0113.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/validate.py:34: ValidationWarning: While validating meta.exposure.readpatt the following error occurred:
'ALLIRS2' is not one of ['ACQ1', 'ACQ2', 'BRIGHT1', 'BRIGHT2', 'DEEP2', 'DEEP8', 'FAST', 'FASTGRPAVG', 'FASTGRPAVG8', 'FASTGRPAVG16', 'FASTGRPAVG32', 'FASTGRPAVG64', 'FASTR1', 'FASTR100', 'FGS', 'FGS60', 'FGS8370', 'FGS840', 'FGSRAPID', 'FINEGUIDE', 'ID', 'MEDIUM2', 'MEDIUM8', 'NIS', 'NISRAPID', 'NRS', 'NRSIRS2', 'NRSN16R4', 'NRSN32R8', 'NRSN8R2', 'NRSRAPID', 'NRSIRS2RAPID', 'NRSRAPIDD1', 'NRSRAPIDD2', 'NRSRAPIDD6', 'NRSSLOW', 'RAPID', 'SHALLOW2', 'SHALLOW4', 'SLOW', 'SLOWR1', 'TRACK', 'ANY', 'N/A']
Failed validating 'enum' in schema:
OrderedDict([('title', 'Readout pattern'),
('type', 'string'),
('enum',
['ACQ1',
'ACQ2',
'BRIGHT1',
'BRIGHT2',
'DEEP2',
'DEEP8',
'FAST',
'FASTGRPAVG',
'FASTGRPAVG8',
'FASTGRPAVG16',
'FASTGRPAVG32',
'FASTGRPAVG64',
'FASTR1',
'FASTR100',
'FGS',
'FGS60',
'FGS8370',
'FGS840',
'FGSRAPID',
'FINEGUIDE',
'ID',
'MEDIUM2',
'MEDIUM8',
'NIS',
'NISRAPID',
'NRS',
'NRSIRS2',
'NRSN16R4',
'NRSN32R8',
'NRSN8R2',
'NRSRAPID',
'NRSIRS2RAPID',
'NRSRAPIDD1',
'NRSRAPIDD2',
'NRSRAPIDD6',
'NRSSLOW',
'RAPID',
'SHALLOW2',
'SHALLOW4',
'SLOW',
'SLOWR1',
'TRACK',
'ANY',
'N/A']),
('fits_ke ...
warnings.warn(errmsg, ValidationWarning)
2022-01-27 18:47:54,223 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2022-01-27 18:47:54,391 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:47:54,393 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2022-01-27 18:47:54,417 - stpipe.Detector1Pipeline.refpix - INFO - Using refpix reference file: /grp/crds/cache/references/jwst/jwst_nirspec_refpix_0022.fits
2022-01-27 18:48:06,644 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2022-01-27 18:48:06,960 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:06,962 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:48:06,987 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0018.fits
2022-01-27 18:48:07,708 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2022-01-27 18:48:07,847 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:07,849 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'dark_output': None}
2022-01-27 18:48:07,910 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0086.fits
2022-01-27 18:48:11,192 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=4, nframes=1, groupgap=0
2022-01-27 18:48:11,195 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=65, nframes=1, groupgap=0
2022-01-27 18:48:11,824 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2022-01-27 18:48:12,097 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:12,099 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-01-27 18:48:12,128 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma
2022-01-27 18:48:12,161 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2022-01-27 18:48:12,245 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0018.fits
2022-01-27 18:48:12,299 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection
2022-01-27 18:48:12,511 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method
2022-01-27 18:48:12,648 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1:
2022-01-27 18:48:14,075 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-01-27 18:48:14,076 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 19712 pixels with at least one CR and three groups
2022-01-27 18:48:14,077 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 8617 pixels with at least one CR and two groups
2022-01-27 18:48:14,823 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 2.31002 sec
2022-01-27 18:48:14,826 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 2.698267
2022-01-27 18:48:14,833 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2022-01-27 18:48:14,960 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:14,962 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2022-01-27 18:48:15,040 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0018.fits
2022-01-27 18:48:15,099 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2022-01-27 18:48:15,153 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2022-01-27 18:48:15,154 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:1169: RuntimeWarning: invalid value encountered in multiply
var_p4[num_int, :, :, :] *= (segs_4[num_int, :, :, :] > 0)
2022-01-27 18:48:27,205 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 4
2022-01-27 18:48:27,206 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2022-01-27 18:48:27,416 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2022-01-27 18:48:27,544 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:27,546 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:48:27,623 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-01-27 18:48:27,624 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-01-27 18:48:27,629 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-01-27 18:48:27,742 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:27,745 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:48:27,818 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-01-27 18:48:27,819 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-01-27 18:48:27,824 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-01-27 18:48:27,827 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2022-01-27 18:48:27,829 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2022-01-27 18:48:27,840 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2022-01-27 18:48:27,958 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<ImageModel(2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:27,960 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-01-27 18:48:28,122 - stpipe.AssignWcsStep - INFO - Retrieving open MSA slitlets for msa_metadata_id = 1 and dither_index = 1
2022-01-27 18:48:28,166 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.0332140289247036 deg
2022-01-27 18:48:28,167 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3367482721805573 deg
2022-01-27 18:48:28,168 - stpipe.AssignWcsStep - INFO - theta_y correction: -1.0907214098475986e-05 deg
2022-01-27 18:48:28,170 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:48:28,482 - stpipe.AssignWcsStep - INFO - Slits projected on detector NRS1: [3, 4]
2022-01-27 18:48:28,483 - stpipe.AssignWcsStep - INFO - Computing WCS for 2 open slitlets
2022-01-27 18:48:28,574 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.0332140289247036 deg
2022-01-27 18:48:28,575 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3367482721805573 deg
2022-01-27 18:48:28,576 - stpipe.AssignWcsStep - INFO - theta_y correction: -1.0907214098475986e-05 deg
2022-01-27 18:48:28,578 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:48:28,591 - stpipe.AssignWcsStep - INFO - SPORDER= 0, wrange=[6e-07, 5.3e-06]
2022-01-27 18:48:28,723 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 1
2022-01-27 18:48:28,725 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 2
2022-01-27 18:48:28,725 - stpipe.AssignWcsStep - INFO - There are 1 open slits in quadrant 3
2022-01-27 18:48:28,736 - stpipe.AssignWcsStep - INFO - There are 1 open slits in quadrant 4
2022-01-27 18:48:28,748 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 5
2022-01-27 18:48:28,884 - stpipe.AssignWcsStep - INFO - Created a NIRSPEC nrs_msaspec pipeline with references {'distortion': None, 'filteroffset': None, 'specwcs': None, 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nirspec_wavelengthrange_0004.asdf', 'camera': '/grp/crds/cache/references/jwst/jwst_nirspec_camera_0004.asdf', 'collimator': '/grp/crds/cache/references/jwst/jwst_nirspec_collimator_0004.asdf', 'disperser': '/grp/crds/cache/references/jwst/jwst_nirspec_disperser_0034.asdf', 'fore': '/grp/crds/cache/references/jwst/jwst_nirspec_fore_0028.asdf', 'fpa': '/grp/crds/cache/references/jwst/jwst_nirspec_fpa_0005.asdf', 'msa': '/grp/crds/cache/references/jwst/jwst_nirspec_msa_0005.asdf', 'ote': '/grp/crds/cache/references/jwst/jwst_nirspec_ote_0005.asdf', 'ifupost': None, 'ifufore': None, 'ifuslicer': None, 'msametafile': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/V0030006000104_msa.fits'}
2022-01-27 18:48:29,071 - stpipe.AssignWcsStep - INFO - COMPLETED assign_wcs
2022-01-27 18:48:29,084 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep done
2022-01-27 18:48:29,095 - stpipe.MSAFlagOpenStep - INFO - MSAFlagOpenStep instance created.
2022-01-27 18:48:29,225 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep running with args (<ImageModel(2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:29,227 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:48:29,249 - stpipe.MSAFlagOpenStep - INFO - Using reference file /grp/crds/cache/references/jwst/jwst_nirspec_msaoper_0001.json
2022-01-27 18:48:29,251 - stpipe.JwstStep - INFO - JwstStep instance created.
2022-01-27 18:48:29,381 - stpipe.MSAFlagOpenStep - INFO - gwa_ytilt is 0.0332140289247036 deg
2022-01-27 18:48:29,382 - stpipe.MSAFlagOpenStep - INFO - gwa_xtilt is 0.3367482721805573 deg
2022-01-27 18:48:29,383 - stpipe.MSAFlagOpenStep - INFO - theta_y correction: -1.0907214098475986e-05 deg
2022-01-27 18:48:29,385 - stpipe.MSAFlagOpenStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:48:29,398 - stpipe.MSAFlagOpenStep - INFO - SPORDER= 0, wrange=[6e-07, 5.3e-06]
2022-01-27 18:48:29,529 - stpipe.MSAFlagOpenStep - INFO - There are 5 open slits in quadrant 1
2022-01-27 18:48:29,572 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 2
2022-01-27 18:48:29,602 - stpipe.MSAFlagOpenStep - INFO - There are 9 open slits in quadrant 3
2022-01-27 18:48:29,675 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 4
2022-01-27 18:48:29,702 - stpipe.MSAFlagOpenStep - INFO - There are 0 open slits in quadrant 5
2022-01-27 18:48:41,338 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep done
2022-01-27 18:48:41,350 - stpipe.Extract2dStep - INFO - Extract2dStep instance created.
2022-01-27 18:48:41,567 - stpipe.Extract2dStep - INFO - Step Extract2dStep running with args (<ImageModel(2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:41,569 - stpipe.Extract2dStep - INFO - Step Extract2dStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}
2022-01-27 18:48:41,587 - stpipe.Extract2dStep - INFO - EXP_TYPE is NRS_MSASPEC
2022-01-27 18:48:41,755 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 3
2022-01-27 18:48:41,756 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1027 1464
2022-01-27 18:48:41,756 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1971 1983
2022-01-27 18:48:41,937 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:48:41,950 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.216281195 -45.702862740 156.216151591 -45.702738206 156.216089149 -45.702770462 156.216218751 -45.702894998
2022-01-27 18:48:41,952 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.216281195 -45.702862740 156.216151591 -45.702738206 156.216089149 -45.702770462 156.216218751 -45.702894998
2022-01-27 18:48:42,104 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 4
2022-01-27 18:48:42,105 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1275 1699
2022-01-27 18:48:42,105 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 32 43
2022-01-27 18:48:42,287 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:48:42,299 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.168120618 -45.657220874 156.167995139 -45.657100409 156.167933468 -45.657132147 156.168058946 -45.657252613
2022-01-27 18:48:42,301 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.168120618 -45.657220874 156.167995139 -45.657100409 156.167933468 -45.657132147 156.168058946 -45.657252613
2022-01-27 18:48:42,577 - stpipe.Extract2dStep - INFO - Step Extract2dStep done
2022-01-27 18:48:42,800 - stpipe.SourceTypeStep - INFO - SourceTypeStep instance created.
2022-01-27 18:48:42,936 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:42,938 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:48:42,946 - stpipe.SourceTypeStep - INFO - Input EXP_TYPE is NRS_MSASPEC
2022-01-27 18:48:42,948 - stpipe.SourceTypeStep - INFO - source_id=3, stellarity=100.0000, type=POINT
2022-01-27 18:48:42,950 - stpipe.SourceTypeStep - INFO - source_id=4, stellarity=100.0000, type=POINT
2022-01-27 18:48:42,953 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep done
2022-01-27 18:48:42,970 - stpipe.WavecorrStep - INFO - WavecorrStep instance created.
2022-01-27 18:48:43,097 - stpipe.WavecorrStep - INFO - Step WavecorrStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:43,100 - stpipe.WavecorrStep - INFO - Step WavecorrStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:48:43,128 - stpipe.WavecorrStep - INFO - Using WAVECORR reference file /grp/crds/cache/references/jwst/jwst_nirspec_wavecorr_0004.asdf
2022-01-27 18:48:43,473 - stpipe.WavecorrStep - INFO - Detected a POINT source type in slit 3
2022-01-27 18:48:43,540 - stpipe.WavecorrStep - INFO - Using wavelength zero-point correction for aperture MOS
2022-01-27 18:48:43,544 - stpipe.WavecorrStep - INFO - Detected a POINT source type in slit 4
2022-01-27 18:48:43,609 - stpipe.WavecorrStep - INFO - Using wavelength zero-point correction for aperture MOS
2022-01-27 18:48:43,616 - stpipe.WavecorrStep - INFO - Step WavecorrStep done
2022-01-27 18:48:43,630 - stpipe.FlatFieldStep - INFO - FlatFieldStep instance created.
2022-01-27 18:48:43,778 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:48:43,780 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-01-27 18:49:12,714 - stpipe.FlatFieldStep - INFO - Working on slit 3
2022-01-27 18:49:13,467 - stpipe.FlatFieldStep - INFO - Working on slit 4
2022-01-27 18:49:14,455 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep done
2022-01-27 18:49:14,469 - stpipe.PathLossStep - INFO - PathLossStep instance created.
2022-01-27 18:49:14,628 - stpipe.PathLossStep - INFO - Step PathLossStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:49:14,630 - stpipe.PathLossStep - INFO - Step PathLossStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2022-01-27 18:49:14,654 - stpipe.PathLossStep - INFO - Using PATHLOSS reference file /grp/crds/cache/references/jwst/jwst_nirspec_pathloss_0002.fits
2022-01-27 18:49:14,715 - stpipe.PathLossStep - INFO - Input exposure type is NRS_MSASPEC
2022-01-27 18:49:15,074 - stpipe.PathLossStep - INFO - Working on slit 0
2022-01-27 18:49:15,096 - stpipe.PathLossStep - INFO - Working on slit 1
2022-01-27 18:49:15,121 - stpipe.PathLossStep - INFO - Step PathLossStep done
2022-01-27 18:49:15,136 - stpipe.BarShadowStep - INFO - BarShadowStep instance created.
2022-01-27 18:49:15,273 - stpipe.BarShadowStep - INFO - Step BarShadowStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2022-01-27 18:49:15,275 - stpipe.BarShadowStep - INFO - Step BarShadowStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2022-01-27 18:49:15,299 - stpipe.BarShadowStep - INFO - Using BARSHADOW reference file /grp/crds/cache/references/jwst/jwst_nirspec_barshadow_0001.fits
2022-01-27 18:49:15,698 - stpipe.BarShadowStep - INFO - Working on slitlet 3
2022-01-27 18:49:15,711 - stpipe.BarShadowStep - INFO - Bar shadow correction skipped for slitlet 3 (source not uniform)
2022-01-27 18:49:15,717 - stpipe.BarShadowStep - INFO - Working on slitlet 4
2022-01-27 18:49:15,729 - stpipe.BarShadowStep - INFO - Bar shadow correction skipped for slitlet 4 (source not uniform)
2022-01-27 18:49:15,740 - stpipe.BarShadowStep - INFO - Step BarShadowStep done
Looping over open slitlets...
Working with slitlet 3
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Test for this slit is skipped since source is POINT and hence, the correction is not applied.
Working with slitlet 4
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Test for this slit is skipped since source is POINT and hence, the correction is not applied.
* Test of barshadow_correction for slitlet 3 SKIPPED due to source=POINT.
Reported as PASSED since behavior is as expected.
* Test of percentage_greater_3threshold for slitlet 3 SKIPPED due to source=POINT.
Reported as PASSED since behavior is as expected.
* Test of percentage_greater_5threshold for slitlet 3 SKIPPED due to source=POINT.
Reported as PASSED since behavior is as expected.
* Test of barshadow_correction for slitlet 4 SKIPPED due to source=POINT.
Reported as PASSED since behavior is as expected.
* Test of percentage_greater_3threshold for slitlet 4 SKIPPED due to source=POINT.
Reported as PASSED since behavior is as expected.
* Test of percentage_greater_5threshold for slitlet 4 SKIPPED due to source=POINT.
Reported as PASSED since behavior is as expected.
*** Final result for barshadow test will be reported as PASSED ***
('* Barshadow validation test took ', '0.0004532337188720703 seconds to finish.')
Did barshadow validation test passed? True
Testing files for detector: nrs2
Working with uncal_file: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_prism_nrs2_uncal.fits
2022-01-27 18:49:16,765 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nirspec_pars-detector1pipeline_0004.asdf
2022-01-27 18:49:16,784 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2022-01-27 18:49:16,786 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2022-01-27 18:49:16,787 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2022-01-27 18:49:16,789 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2022-01-27 18:49:16,790 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2022-01-27 18:49:16,792 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2022-01-27 18:49:16,794 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2022-01-27 18:49:16,795 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2022-01-27 18:49:16,797 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2022-01-27 18:49:16,798 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2022-01-27 18:49:16,799 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2022-01-27 18:49:16,801 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2022-01-27 18:49:16,805 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2022-01-27 18:49:16,807 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2022-01-27 18:49:16,808 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2022-01-27 18:49:16,810 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2022-01-27 18:49:16,812 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:379: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_prism_nrs2_uncal.fits' mode='rb' closefd=True>
gc.collect()
2022-01-27 18:49:16,976 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_prism_nrs2_uncal.fits',).
2022-01-27 18:49:16,986 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2022-01-27 18:49:17,159 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'mos_prism_nrs2_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2022-01-27 18:49:17,212 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0087.fits'.
2022-01-27 18:49:17,217 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits'.
2022-01-27 18:49:17,219 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0021.fits'.
2022-01-27 18:49:17,222 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0011.fits'.
2022-01-27 18:49:17,225 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2022-01-27 18:49:17,227 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0017.fits'.
2022-01-27 18:49:17,229 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_refpix_0020.fits'.
2022-01-27 18:49:17,232 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2022-01-27 18:49:17,232 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2022-01-27 18:49:17,234 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0021.fits'.
2022-01-27 18:49:17,236 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0114.fits'.
2022-01-27 18:49:17,240 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2022-01-27 18:49:17,240 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2022-01-27 18:49:17,241 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2022-01-27 18:49:17,600 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:17,602 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:17,701 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2022-01-27 18:49:17,702 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2022-01-27 18:49:17,705 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2022-01-27 18:49:17,850 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:17,852 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:17,875 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0011.fits
2022-01-27 18:49:18,217 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2022-01-27 18:49:18,365 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:18,367 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:18,389 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0021.fits
2022-01-27 18:49:18,929 - stpipe.Detector1Pipeline.saturation - INFO - Detected 5379 saturated pixels
2022-01-27 18:49:18,961 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2022-01-27 18:49:18,985 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2022-01-27 18:49:19,147 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:19,149 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:19,149 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
2022-01-27 18:49:19,152 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2022-01-27 18:49:19,313 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:19,315 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:19,342 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0114.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/validate.py:34: ValidationWarning: While validating meta.exposure.readpatt the following error occurred:
'ALLIRS2' is not one of ['ACQ1', 'ACQ2', 'BRIGHT1', 'BRIGHT2', 'DEEP2', 'DEEP8', 'FAST', 'FASTGRPAVG', 'FASTGRPAVG8', 'FASTGRPAVG16', 'FASTGRPAVG32', 'FASTGRPAVG64', 'FASTR1', 'FASTR100', 'FGS', 'FGS60', 'FGS8370', 'FGS840', 'FGSRAPID', 'FINEGUIDE', 'ID', 'MEDIUM2', 'MEDIUM8', 'NIS', 'NISRAPID', 'NRS', 'NRSIRS2', 'NRSN16R4', 'NRSN32R8', 'NRSN8R2', 'NRSRAPID', 'NRSIRS2RAPID', 'NRSRAPIDD1', 'NRSRAPIDD2', 'NRSRAPIDD6', 'NRSSLOW', 'RAPID', 'SHALLOW2', 'SHALLOW4', 'SLOW', 'SLOWR1', 'TRACK', 'ANY', 'N/A']
Failed validating 'enum' in schema:
OrderedDict([('title', 'Readout pattern'),
('type', 'string'),
('enum',
['ACQ1',
'ACQ2',
'BRIGHT1',
'BRIGHT2',
'DEEP2',
'DEEP8',
'FAST',
'FASTGRPAVG',
'FASTGRPAVG8',
'FASTGRPAVG16',
'FASTGRPAVG32',
'FASTGRPAVG64',
'FASTR1',
'FASTR100',
'FGS',
'FGS60',
'FGS8370',
'FGS840',
'FGSRAPID',
'FINEGUIDE',
'ID',
'MEDIUM2',
'MEDIUM8',
'NIS',
'NISRAPID',
'NRS',
'NRSIRS2',
'NRSN16R4',
'NRSN32R8',
'NRSN8R2',
'NRSRAPID',
'NRSIRS2RAPID',
'NRSRAPIDD1',
'NRSRAPIDD2',
'NRSRAPIDD6',
'NRSSLOW',
'RAPID',
'SHALLOW2',
'SHALLOW4',
'SLOW',
'SLOWR1',
'TRACK',
'ANY',
'N/A']),
('fits_ke ...
warnings.warn(errmsg, ValidationWarning)
2022-01-27 18:49:19,748 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2022-01-27 18:49:19,912 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:19,914 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2022-01-27 18:49:19,941 - stpipe.Detector1Pipeline.refpix - INFO - Using refpix reference file: /grp/crds/cache/references/jwst/jwst_nirspec_refpix_0020.fits
2022-01-27 18:49:32,449 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2022-01-27 18:49:32,692 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:32,694 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:32,724 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0021.fits
2022-01-27 18:49:33,430 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2022-01-27 18:49:33,577 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:33,579 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'dark_output': None}
2022-01-27 18:49:33,640 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0087.fits
2022-01-27 18:49:36,849 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=4, nframes=1, groupgap=0
2022-01-27 18:49:36,850 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=65, nframes=1, groupgap=0
2022-01-27 18:49:37,414 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2022-01-27 18:49:37,739 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:37,741 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-01-27 18:49:37,776 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma
2022-01-27 18:49:37,817 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2022-01-27 18:49:37,924 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0017.fits
2022-01-27 18:49:37,985 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection
2022-01-27 18:49:38,220 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method
2022-01-27 18:49:38,357 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1:
2022-01-27 18:49:39,769 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-01-27 18:49:39,770 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 7787 pixels with at least one CR and three groups
2022-01-27 18:49:39,771 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 3636 pixels with at least one CR and two groups
2022-01-27 18:49:40,132 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 1.91038 sec
2022-01-27 18:49:40,136 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 2.360129
2022-01-27 18:49:40,142 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2022-01-27 18:49:40,408 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:40,410 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2022-01-27 18:49:40,499 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0017.fits
2022-01-27 18:49:40,560 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2022-01-27 18:49:40,618 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2022-01-27 18:49:40,619 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:1169: RuntimeWarning: invalid value encountered in multiply
var_p4[num_int, :, :, :] *= (segs_4[num_int, :, :, :] > 0)
2022-01-27 18:49:53,075 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 4
2022-01-27 18:49:53,076 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2022-01-27 18:49:53,300 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2022-01-27 18:49:53,496 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:53,498 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:53,568 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-01-27 18:49:53,569 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-01-27 18:49:53,573 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-01-27 18:49:53,722 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:53,724 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:53,796 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-01-27 18:49:53,797 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-01-27 18:49:53,802 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-01-27 18:49:53,804 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2022-01-27 18:49:53,806 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2022-01-27 18:49:53,816 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2022-01-27 18:49:53,965 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<ImageModel(2048, 2048) from mos_prism_nrs2_uncal.fits>,).
2022-01-27 18:49:53,967 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-01-27 18:49:54,119 - stpipe.AssignWcsStep - INFO - Retrieving open MSA slitlets for msa_metadata_id = 1 and dither_index = 1
2022-01-27 18:49:54,159 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.0332140289247036 deg
2022-01-27 18:49:54,160 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3367482721805573 deg
2022-01-27 18:49:54,161 - stpipe.AssignWcsStep - INFO - theta_y correction: -1.0907214098475986e-05 deg
2022-01-27 18:49:54,163 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:49:54,364 - stpipe.AssignWcsStep - INFO - Removing slit 3 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:49:54,425 - stpipe.AssignWcsStep - INFO - Removing slit 4 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:49:54,425 - stpipe.AssignWcsStep - INFO - Slits projected on detector NRS2: []
2022-01-27 18:49:54,426 - stpipe.AssignWcsStep - CRITICAL - No open slits fall on detector NRS2.
No open slits fall on detector nrs2 Did barshadow validation test passed? skipped Testing files for detector: nrs1 Working with uncal_file: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_g140m_line1_NRS1_uncal.fits
2022-01-27 18:49:55,309 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nirspec_pars-detector1pipeline_0004.asdf
2022-01-27 18:49:55,325 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2022-01-27 18:49:55,326 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2022-01-27 18:49:55,328 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2022-01-27 18:49:55,329 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2022-01-27 18:49:55,331 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2022-01-27 18:49:55,333 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2022-01-27 18:49:55,334 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2022-01-27 18:49:55,335 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2022-01-27 18:49:55,337 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2022-01-27 18:49:55,338 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2022-01-27 18:49:55,339 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2022-01-27 18:49:55,340 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2022-01-27 18:49:55,342 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2022-01-27 18:49:55,343 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2022-01-27 18:49:55,345 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2022-01-27 18:49:55,346 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2022-01-27 18:49:55,347 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:379: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_g140m_line1_NRS1_uncal.fits' mode='rb' closefd=True>
gc.collect()
2022-01-27 18:49:55,503 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_g140m_line1_NRS1_uncal.fits',).
2022-01-27 18:49:55,513 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2022-01-27 18:49:55,687 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'mos_g140m_line1_NRS1_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2022-01-27 18:49:55,716 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0140.fits'.
2022-01-27 18:49:55,719 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits'.
2022-01-27 18:49:55,722 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0019.fits'.
2022-01-27 18:49:55,725 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0024.fits'.
2022-01-27 18:49:55,728 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2022-01-27 18:49:55,728 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits'.
2022-01-27 18:49:55,733 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2022-01-27 18:49:55,734 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2022-01-27 18:49:55,735 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2022-01-27 18:49:55,735 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0023.fits'.
2022-01-27 18:49:55,739 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0087.fits'.
2022-01-27 18:49:55,741 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2022-01-27 18:49:55,742 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2022-01-27 18:49:55,743 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2022-01-27 18:49:56,110 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:49:56,112 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:56,208 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2022-01-27 18:49:56,209 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2022-01-27 18:49:56,211 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2022-01-27 18:49:56,355 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:49:56,356 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:56,378 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0024.fits
2022-01-27 18:49:56,657 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2022-01-27 18:49:56,908 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:49:56,910 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:56,932 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0023.fits
2022-01-27 18:49:57,455 - stpipe.Detector1Pipeline.saturation - INFO - Detected 58922 saturated pixels
2022-01-27 18:49:57,487 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2022-01-27 18:49:57,501 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2022-01-27 18:49:57,670 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:49:57,672 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:57,673 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
2022-01-27 18:49:57,676 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2022-01-27 18:49:57,820 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:49:57,822 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:49:57,848 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0087.fits
2022-01-27 18:49:58,122 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2022-01-27 18:49:58,270 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:49:58,272 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2022-01-27 18:49:58,282 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
2022-01-27 18:49:58,283 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
2022-01-27 18:49:58,284 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
2022-01-27 18:49:58,285 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000
2022-01-27 18:49:58,285 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True
2022-01-27 18:50:01,030 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2022-01-27 18:50:01,191 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:01,194 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:50:01,219 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0019.fits
2022-01-27 18:50:02,075 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2022-01-27 18:50:02,264 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:02,266 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'dark_output': None}
2022-01-27 18:50:02,292 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0140.fits
2022-01-27 18:50:02,581 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=6, nframes=1, groupgap=0
2022-01-27 18:50:02,582 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=10, nframes=1, groupgap=0
2022-01-27 18:50:02,782 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2022-01-27 18:50:02,945 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:02,946 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-01-27 18:50:02,956 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma
2022-01-27 18:50:02,968 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2022-01-27 18:50:03,034 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits
2022-01-27 18:50:03,090 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection
2022-01-27 18:50:03,291 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method
2022-01-27 18:50:03,485 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1:
2022-01-27 18:50:05,169 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 39308 pixels with at least one CR and at least four groups
2022-01-27 18:50:05,170 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 3301 pixels with at least one CR and three groups
2022-01-27 18:50:05,171 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 44253 pixels with at least one CR and two groups
2022-01-27 18:50:07,671 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 4.3781 sec
2022-01-27 18:50:07,678 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 4.722291
2022-01-27 18:50:07,684 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2022-01-27 18:50:07,877 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:07,879 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2022-01-27 18:50:07,915 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits
2022-01-27 18:50:07,973 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2022-01-27 18:50:08,027 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2022-01-27 18:50:08,028 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:1169: RuntimeWarning: invalid value encountered in multiply
var_p4[num_int, :, :, :] *= (segs_4[num_int, :, :, :] > 0)
2022-01-27 18:50:31,721 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 6
2022-01-27 18:50:31,722 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2022-01-27 18:50:31,924 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2022-01-27 18:50:32,114 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:32,115 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:50:32,186 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-01-27 18:50:32,188 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-01-27 18:50:32,193 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-01-27 18:50:32,347 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:32,349 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:50:32,426 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-01-27 18:50:32,427 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-01-27 18:50:32,432 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-01-27 18:50:32,434 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2022-01-27 18:50:32,436 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2022-01-27 18:50:32,447 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2022-01-27 18:50:32,602 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:32,605 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-01-27 18:50:32,798 - stpipe.AssignWcsStep - INFO - Retrieving open MSA slitlets for msa_metadata_id = 1 and dither_index = 1
2022-01-27 18:50:33,027 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2022-01-27 18:50:33,028 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2022-01-27 18:50:33,029 - stpipe.AssignWcsStep - INFO - theta_y correction: 0.0002496099796717191 deg
2022-01-27 18:50:33,031 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:50:33,238 - stpipe.AssignWcsStep - INFO - Removing slit 6 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,252 - stpipe.AssignWcsStep - INFO - Removing slit 7 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,266 - stpipe.AssignWcsStep - INFO - Removing slit 8 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,280 - stpipe.AssignWcsStep - INFO - Removing slit 9 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,293 - stpipe.AssignWcsStep - INFO - Removing slit 10 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,307 - stpipe.AssignWcsStep - INFO - Removing slit 11 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,321 - stpipe.AssignWcsStep - INFO - Removing slit 14 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,334 - stpipe.AssignWcsStep - INFO - Removing slit 15 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,348 - stpipe.AssignWcsStep - INFO - Removing slit 16 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,361 - stpipe.AssignWcsStep - INFO - Removing slit 17 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,376 - stpipe.AssignWcsStep - INFO - Removing slit 18 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,389 - stpipe.AssignWcsStep - INFO - Removing slit 19 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,403 - stpipe.AssignWcsStep - INFO - Removing slit 21 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,417 - stpipe.AssignWcsStep - INFO - Removing slit 25 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,430 - stpipe.AssignWcsStep - INFO - Removing slit 26 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,444 - stpipe.AssignWcsStep - INFO - Removing slit 27 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,458 - stpipe.AssignWcsStep - INFO - Removing slit 29 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,471 - stpipe.AssignWcsStep - INFO - Removing slit 31 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,486 - stpipe.AssignWcsStep - INFO - Removing slit 32 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,500 - stpipe.AssignWcsStep - INFO - Removing slit 33 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,513 - stpipe.AssignWcsStep - INFO - Removing slit 35 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,527 - stpipe.AssignWcsStep - INFO - Removing slit 37 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,541 - stpipe.AssignWcsStep - INFO - Removing slit 38 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,554 - stpipe.AssignWcsStep - INFO - Removing slit 39 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,568 - stpipe.AssignWcsStep - INFO - Removing slit 41 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,605 - stpipe.AssignWcsStep - INFO - Removing slit 1 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,618 - stpipe.AssignWcsStep - INFO - Removing slit 2 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,632 - stpipe.AssignWcsStep - INFO - Removing slit 3 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,645 - stpipe.AssignWcsStep - INFO - Removing slit 4 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,659 - stpipe.AssignWcsStep - INFO - Removing slit 5 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,673 - stpipe.AssignWcsStep - INFO - Removing slit 12 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,687 - stpipe.AssignWcsStep - INFO - Removing slit 13 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,701 - stpipe.AssignWcsStep - INFO - Removing slit 20 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,716 - stpipe.AssignWcsStep - INFO - Removing slit 22 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,729 - stpipe.AssignWcsStep - INFO - Removing slit 23 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,743 - stpipe.AssignWcsStep - INFO - Removing slit 24 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,757 - stpipe.AssignWcsStep - INFO - Removing slit 28 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,771 - stpipe.AssignWcsStep - INFO - Removing slit 30 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,784 - stpipe.AssignWcsStep - INFO - Removing slit 34 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,798 - stpipe.AssignWcsStep - INFO - Removing slit 36 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:33,812 - stpipe.AssignWcsStep - INFO - Removing slit 40 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:50:34,108 - stpipe.AssignWcsStep - INFO - Slits projected on detector NRS1: [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68]
2022-01-27 18:50:34,109 - stpipe.AssignWcsStep - INFO - Computing WCS for 27 open slitlets
2022-01-27 18:50:34,143 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2022-01-27 18:50:34,144 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2022-01-27 18:50:34,145 - stpipe.AssignWcsStep - INFO - theta_y correction: 0.0002496099796717191 deg
2022-01-27 18:50:34,146 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:50:34,160 - stpipe.AssignWcsStep - INFO - SPORDER= -1, wrange=[9.7e-07, 1.89e-06]
2022-01-27 18:50:34,293 - stpipe.AssignWcsStep - INFO - There are 2 open slits in quadrant 1
2022-01-27 18:50:34,313 - stpipe.AssignWcsStep - INFO - There are 11 open slits in quadrant 2
2022-01-27 18:50:34,411 - stpipe.AssignWcsStep - INFO - There are 4 open slits in quadrant 3
2022-01-27 18:50:34,451 - stpipe.AssignWcsStep - INFO - There are 10 open slits in quadrant 4
2022-01-27 18:50:34,552 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 5
2022-01-27 18:50:34,901 - stpipe.AssignWcsStep - INFO - Created a NIRSPEC nrs_msaspec pipeline with references {'distortion': None, 'filteroffset': None, 'specwcs': None, 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nirspec_wavelengthrange_0004.asdf', 'camera': '/grp/crds/cache/references/jwst/jwst_nirspec_camera_0004.asdf', 'collimator': '/grp/crds/cache/references/jwst/jwst_nirspec_collimator_0004.asdf', 'disperser': '/grp/crds/cache/references/jwst/jwst_nirspec_disperser_0032.asdf', 'fore': '/grp/crds/cache/references/jwst/jwst_nirspec_fore_0023.asdf', 'fpa': '/grp/crds/cache/references/jwst/jwst_nirspec_fpa_0005.asdf', 'msa': '/grp/crds/cache/references/jwst/jwst_nirspec_msa_0005.asdf', 'ote': '/grp/crds/cache/references/jwst/jwst_nirspec_ote_0005.asdf', 'ifupost': None, 'ifufore': None, 'ifuslicer': None, 'msametafile': 'V8460001000101_msa.fits'}
2022-01-27 18:50:35,831 - stpipe.AssignWcsStep - INFO - COMPLETED assign_wcs
2022-01-27 18:50:35,844 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep done
2022-01-27 18:50:35,854 - stpipe.MSAFlagOpenStep - INFO - MSAFlagOpenStep instance created.
2022-01-27 18:50:36,044 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:36,046 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:50:36,064 - stpipe.MSAFlagOpenStep - INFO - Using reference file /grp/crds/cache/references/jwst/jwst_nirspec_msaoper_0001.json
2022-01-27 18:50:36,066 - stpipe.JwstStep - INFO - JwstStep instance created.
2022-01-27 18:50:36,193 - stpipe.MSAFlagOpenStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2022-01-27 18:50:36,194 - stpipe.MSAFlagOpenStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2022-01-27 18:50:36,195 - stpipe.MSAFlagOpenStep - INFO - theta_y correction: 0.0002496099796717191 deg
2022-01-27 18:50:36,196 - stpipe.MSAFlagOpenStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:50:36,209 - stpipe.MSAFlagOpenStep - INFO - SPORDER= -1, wrange=[9.7e-07, 1.89e-06]
2022-01-27 18:50:36,342 - stpipe.MSAFlagOpenStep - INFO - There are 5 open slits in quadrant 1
2022-01-27 18:50:36,388 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 2
2022-01-27 18:50:36,416 - stpipe.MSAFlagOpenStep - INFO - There are 9 open slits in quadrant 3
2022-01-27 18:50:36,492 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 4
2022-01-27 18:50:36,518 - stpipe.MSAFlagOpenStep - INFO - There are 0 open slits in quadrant 5
2022-01-27 18:50:49,178 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep done
2022-01-27 18:50:49,194 - stpipe.Extract2dStep - INFO - Extract2dStep instance created.
2022-01-27 18:50:49,599 - stpipe.Extract2dStep - INFO - Step Extract2dStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:50:49,602 - stpipe.Extract2dStep - INFO - Step Extract2dStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}
2022-01-27 18:50:49,619 - stpipe.Extract2dStep - INFO - EXP_TYPE is NRS_MSASPEC
2022-01-27 18:50:50,092 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 53
2022-01-27 18:50:50,093 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1542 2048
2022-01-27 18:50:50,094 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1315 1329
2022-01-27 18:50:50,258 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:50,268 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.226123221 -45.673642180 156.225994086 -45.673519691 156.225931834 -45.673551545 156.226060967 -45.673674035
2022-01-27 18:50:50,270 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.226123221 -45.673642180 156.225994086 -45.673519691 156.225931834 -45.673551545 156.226060967 -45.673674035
2022-01-27 18:50:50,946 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 54
2022-01-27 18:50:50,947 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1542 2048
2022-01-27 18:50:50,948 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1305 1319
2022-01-27 18:50:51,118 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:51,129 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.225872406 -45.673404272 156.225743296 -45.673281804 156.225681049 -45.673313656 156.225810156 -45.673436124
2022-01-27 18:50:51,131 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.225872406 -45.673404272 156.225743296 -45.673281804 156.225681049 -45.673313656 156.225810156 -45.673436124
2022-01-27 18:50:51,816 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 42
2022-01-27 18:50:51,818 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 2018 2048
2022-01-27 18:50:51,818 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 545 562
2022-01-27 18:50:51,985 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:51,997 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.223646010 -45.647128995 156.223518121 -45.647008321 156.223456024 -45.647039957 156.223583911 -45.647160632
2022-01-27 18:50:51,998 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.223646010 -45.647128995 156.223518121 -45.647008321 156.223456024 -45.647039957 156.223583911 -45.647160632
2022-01-27 18:50:52,733 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 43
2022-01-27 18:50:52,734 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1970 2048
2022-01-27 18:50:52,735 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 414 430
2022-01-27 18:50:52,909 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:52,922 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218966486 -45.644829601 156.218838959 -45.644709141 156.218776943 -45.644740759 156.218904467 -45.644861220
2022-01-27 18:50:52,923 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218966486 -45.644829601 156.218838959 -45.644709141 156.218776943 -45.644740759 156.218904467 -45.644861220
2022-01-27 18:50:53,410 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 44
2022-01-27 18:50:53,411 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1969 2048
2022-01-27 18:50:53,412 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 404 420
2022-01-27 18:50:53,585 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:53,598 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218718991 -45.644595818 156.218591488 -45.644475376 156.218529475 -45.644506992 156.218656977 -45.644627436
2022-01-27 18:50:53,600 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218718991 -45.644595818 156.218591488 -45.644475376 156.218529475 -45.644506992 156.218656977 -45.644627436
2022-01-27 18:50:54,306 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 45
2022-01-27 18:50:54,308 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1908 2048
2022-01-27 18:50:54,309 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 530 546
2022-01-27 18:50:54,476 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:54,490 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.219673020 -45.648613077 156.219545303 -45.648492383 156.219483265 -45.648524021 156.219610979 -45.648644716
2022-01-27 18:50:54,492 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.219673020 -45.648613077 156.219545303 -45.648492383 156.219483265 -45.648524021 156.219610979 -45.648644716
2022-01-27 18:50:55,404 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 46
2022-01-27 18:50:55,406 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1882 2048
2022-01-27 18:50:55,406 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 202 218
2022-01-27 18:50:55,573 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:55,584 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.211127421 -45.641279813 156.211000463 -45.641159678 156.210938572 -45.641191268 156.211065527 -45.641311404
2022-01-27 18:50:55,586 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.211127421 -45.641279813 156.211000463 -45.641159678 156.210938572 -45.641191268 156.211065527 -45.641311404
2022-01-27 18:50:56,097 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 47
2022-01-27 18:50:56,098 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1815 2048
2022-01-27 18:50:56,099 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 566 581
2022-01-27 18:50:56,275 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:56,287 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217456055 -45.651006881 156.217328370 -45.650886079 156.217266356 -45.650917729 156.217394038 -45.651038531
2022-01-27 18:50:56,289 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217456055 -45.651006881 156.217328370 -45.650886079 156.217266356 -45.650917729 156.217394038 -45.651038531
2022-01-27 18:50:57,071 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 48
2022-01-27 18:50:57,073 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1815 2048
2022-01-27 18:50:57,074 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 561 576
2022-01-27 18:50:57,248 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:57,262 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217332149 -45.650889654 156.217204477 -45.650768862 156.217142464 -45.650800511 156.217270135 -45.650921304
2022-01-27 18:50:57,264 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217332149 -45.650889654 156.217204477 -45.650768862 156.217142464 -45.650800511 156.217270135 -45.650921304
2022-01-27 18:50:58,019 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 49
2022-01-27 18:50:58,021 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1791 2048
2022-01-27 18:50:58,022 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 631 646
2022-01-27 18:50:58,195 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:58,208 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218210913 -45.652969013 156.218083107 -45.652848076 156.218021073 -45.652879740 156.218148877 -45.653000678
2022-01-27 18:50:58,210 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218210913 -45.652969013 156.218083107 -45.652848076 156.218021073 -45.652879740 156.218148877 -45.653000678
2022-01-27 18:50:58,717 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 50
2022-01-27 18:50:58,719 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1774 2048
2022-01-27 18:50:58,719 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 238 253
2022-01-27 18:50:58,900 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:58,911 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.208399869 -45.643929179 156.208272959 -45.643808942 156.208211096 -45.643840541 156.208338005 -45.643960778
2022-01-27 18:50:58,913 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.208399869 -45.643929179 156.208272959 -45.643808942 156.208211096 -45.643840541 156.208338005 -45.643960778
2022-01-27 18:50:59,704 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 51
2022-01-27 18:50:59,705 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1759 2048
2022-01-27 18:50:59,706 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 430 445
2022-01-27 18:50:59,889 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:50:59,900 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.212403238 -45.648718689 156.212275928 -45.648598111 156.212213993 -45.648629742 156.212341301 -45.648750320
2022-01-27 18:50:59,902 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.212403238 -45.648718689 156.212275928 -45.648598111 156.212213993 -45.648629742 156.212341301 -45.648750320
2022-01-27 18:51:00,374 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 52
2022-01-27 18:51:00,375 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1722 2048
2022-01-27 18:51:00,375 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 803 817
2022-01-27 18:51:00,840 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:00,852 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.219947139 -45.658234585 156.219819020 -45.658113276 156.219756938 -45.658144979 156.219885055 -45.658266289
2022-01-27 18:51:00,853 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.219947139 -45.658234585 156.219819020 -45.658113276 156.219756938 -45.658144979 156.219885055 -45.658266289
2022-01-27 18:51:01,349 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 55
2022-01-27 18:51:01,350 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1022 2048
2022-01-27 18:51:01,351 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1415 1430
2022-01-27 18:51:01,535 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:01,547 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.211226719 -45.684941334 156.211098073 -45.684818233 156.211035880 -45.684850241 156.211164524 -45.684973343
2022-01-27 18:51:01,550 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.211226719 -45.684941334 156.211098073 -45.684818233 156.211035880 -45.684850241 156.211164524 -45.684973343
2022-01-27 18:51:02,308 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 65
2022-01-27 18:51:02,309 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 427 1893
2022-01-27 18:51:02,310 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1251 1273
2022-01-27 18:51:02,572 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:02,584 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.187669449 -45.691221095 156.187541886 -45.691097893 156.187479754 -45.691130071 156.187607315 -45.691253274
2022-01-27 18:51:02,586 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.187669449 -45.691221095 156.187541886 -45.691097893 156.187479754 -45.691130071 156.187607315 -45.691253274
2022-01-27 18:51:03,046 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 66
2022-01-27 18:51:03,049 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 426 1892
2022-01-27 18:51:03,049 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1452 1474
2022-01-27 18:51:03,233 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:03,245 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.192290190 -45.696194513 156.192162195 -45.696070854 156.192099979 -45.696103094 156.192227972 -45.696226755
2022-01-27 18:51:03,247 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.192290190 -45.696194513 156.192162195 -45.696070854 156.192099979 -45.696103094 156.192227972 -45.696226755
2022-01-27 18:51:04,060 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 68
2022-01-27 18:51:04,061 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 375 1842
2022-01-27 18:51:04,062 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1476 1499
2022-01-27 18:51:04,258 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:04,269 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.191192483 -45.697686513 156.191064493 -45.697562756 156.191002259 -45.697595026 156.191130247 -45.697718784
2022-01-27 18:51:04,271 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.191192483 -45.697686513 156.191064493 -45.697562756 156.191002259 -45.697595026 156.191130247 -45.697718784
2022-01-27 18:51:04,737 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 56
2022-01-27 18:51:04,738 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 872 2048
2022-01-27 18:51:04,738 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 768 783
2022-01-27 18:51:05,250 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:05,259 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.191122501 -45.671742959 156.190995485 -45.671621176 156.190933579 -45.671653049 156.191060593 -45.671774833
2022-01-27 18:51:05,261 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.191122501 -45.671742959 156.190995485 -45.671621176 156.190933579 -45.671653049 156.191060593 -45.671774833
2022-01-27 18:51:05,736 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 57
2022-01-27 18:51:05,737 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 805 2048
2022-01-27 18:51:05,738 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 354 370
2022-01-27 18:51:05,915 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:05,926 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.179343124 -45.662963603 156.179216994 -45.662842617 156.179155236 -45.662874401 156.179281365 -45.662995389
2022-01-27 18:51:05,928 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.179343124 -45.662963603 156.179216994 -45.662842617 156.179155236 -45.662874401 156.179281365 -45.662995389
2022-01-27 18:51:06,719 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 58
2022-01-27 18:51:06,721 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 731 2048
2022-01-27 18:51:06,723 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 258 274
2022-01-27 18:51:06,907 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:06,918 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.174716949 -45.661919476 156.174591057 -45.661798624 156.174529324 -45.661830406 156.174655215 -45.661951259
2022-01-27 18:51:06,919 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.174716949 -45.661919476 156.174591057 -45.661798624 156.174529324 -45.661830406 156.174655215 -45.661951259
2022-01-27 18:51:07,417 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 59
2022-01-27 18:51:07,419 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 658 2048
2022-01-27 18:51:07,419 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 71 88
2022-01-27 18:51:07,598 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:07,610 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.167987333 -45.658726530 156.167861814 -45.658605973 156.167800128 -45.658637729 156.167925645 -45.658758288
2022-01-27 18:51:07,612 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.167987333 -45.658726530 156.167861814 -45.658605973 156.167800128 -45.658637729 156.167925645 -45.658758288
2022-01-27 18:51:08,647 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 60
2022-01-27 18:51:08,648 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 641 2048
2022-01-27 18:51:08,648 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 681 699
2022-01-27 18:51:08,827 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:08,839 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.181507045 -45.673611447 156.181380443 -45.673489678 156.181318559 -45.673521602 156.181445158 -45.673643373
2022-01-27 18:51:08,841 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.181507045 -45.673611447 156.181380443 -45.673489678 156.181318559 -45.673521602 156.181445158 -45.673643373
2022-01-27 18:51:09,308 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 61
2022-01-27 18:51:09,309 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 620 2048
2022-01-27 18:51:09,310 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 822 840
2022-01-27 18:51:09,488 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:09,500 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.184095390 -45.677365774 156.183968526 -45.677243686 156.183906587 -45.677275659 156.184033450 -45.677397747
2022-01-27 18:51:09,501 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.184095390 -45.677365774 156.183968526 -45.677243686 156.183906587 -45.677275659 156.184033450 -45.677397747
2022-01-27 18:51:10,695 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 62
2022-01-27 18:51:10,696 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 570 2032
2022-01-27 18:51:10,697 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 510 528
2022-01-27 18:51:10,875 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:10,888 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.175200333 -45.670700849 156.175074128 -45.670579384 156.175012293 -45.670611285 156.175138497 -45.670732752
2022-01-27 18:51:10,890 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.175200333 -45.670700849 156.175074128 -45.670579384 156.175012293 -45.670611285 156.175138497 -45.670732752
2022-01-27 18:51:11,374 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 63
2022-01-27 18:51:11,375 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 454 1915
2022-01-27 18:51:11,376 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 181 200
2022-01-27 18:51:11,559 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:11,570 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.163846800 -45.664818400 156.163721256 -45.664697497 156.163659498 -45.664729348 156.163785040 -45.664850252
2022-01-27 18:51:11,572 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.163846800 -45.664818400 156.163721256 -45.664697497 156.163659498 -45.664729348 156.163785040 -45.664850252
2022-01-27 18:51:12,063 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 64
2022-01-27 18:51:12,065 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 454 1915
2022-01-27 18:51:12,065 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 176 195
2022-01-27 18:51:12,938 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:12,950 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.163724974 -45.664701077 156.163599439 -45.664580184 156.163537682 -45.664612033 156.163663216 -45.664732928
2022-01-27 18:51:12,952 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.163724974 -45.664701077 156.163599439 -45.664580184 156.163537682 -45.664612033 156.163663216 -45.664732928
2022-01-27 18:51:13,470 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 67
2022-01-27 18:51:13,471 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 328 1789
2022-01-27 18:51:13,472 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 130 150
2022-01-27 18:51:13,679 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:51:13,690 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.158533940 -45.665758025 156.158408563 -45.665637125 156.158346784 -45.665669007 156.158472159 -45.665789909
2022-01-27 18:51:13,692 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.158533940 -45.665758025 156.158408563 -45.665637125 156.158346784 -45.665669007 156.158472159 -45.665789909
2022-01-27 18:51:15,785 - stpipe.Extract2dStep - INFO - Step Extract2dStep done
2022-01-27 18:51:18,400 - stpipe.SourceTypeStep - INFO - SourceTypeStep instance created.
2022-01-27 18:51:18,824 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:51:18,826 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:51:18,834 - stpipe.SourceTypeStep - INFO - Input EXP_TYPE is NRS_MSASPEC
2022-01-27 18:51:18,836 - stpipe.SourceTypeStep - INFO - source_id=53, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,837 - stpipe.SourceTypeStep - INFO - source_id=54, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,838 - stpipe.SourceTypeStep - INFO - source_id=42, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,840 - stpipe.SourceTypeStep - INFO - source_id=43, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,841 - stpipe.SourceTypeStep - INFO - source_id=44, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,842 - stpipe.SourceTypeStep - INFO - source_id=45, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,844 - stpipe.SourceTypeStep - INFO - source_id=46, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,845 - stpipe.SourceTypeStep - INFO - source_id=47, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,846 - stpipe.SourceTypeStep - INFO - source_id=48, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,848 - stpipe.SourceTypeStep - INFO - source_id=49, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,849 - stpipe.SourceTypeStep - INFO - source_id=50, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,850 - stpipe.SourceTypeStep - INFO - source_id=51, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,851 - stpipe.SourceTypeStep - INFO - source_id=52, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,853 - stpipe.SourceTypeStep - INFO - source_id=55, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,854 - stpipe.SourceTypeStep - INFO - source_id=65, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,855 - stpipe.SourceTypeStep - INFO - source_id=66, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,857 - stpipe.SourceTypeStep - INFO - source_id=68, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,858 - stpipe.SourceTypeStep - INFO - source_id=56, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,859 - stpipe.SourceTypeStep - INFO - source_id=57, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,860 - stpipe.SourceTypeStep - INFO - source_id=58, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,862 - stpipe.SourceTypeStep - INFO - source_id=59, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,863 - stpipe.SourceTypeStep - INFO - source_id=60, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,865 - stpipe.SourceTypeStep - INFO - source_id=61, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,869 - stpipe.SourceTypeStep - INFO - source_id=62, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,870 - stpipe.SourceTypeStep - INFO - source_id=63, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,871 - stpipe.SourceTypeStep - INFO - source_id=64, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,873 - stpipe.SourceTypeStep - INFO - source_id=67, stellarity=0.0000, type=EXTENDED
2022-01-27 18:51:18,877 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep done
2022-01-27 18:51:18,943 - stpipe.WavecorrStep - INFO - WavecorrStep instance created.
2022-01-27 18:51:19,252 - stpipe.WavecorrStep - INFO - Step WavecorrStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:51:19,254 - stpipe.WavecorrStep - INFO - Step WavecorrStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:51:19,317 - stpipe.WavecorrStep - INFO - Using WAVECORR reference file /grp/crds/cache/references/jwst/jwst_nirspec_wavecorr_0004.asdf
2022-01-27 18:51:24,171 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 53
2022-01-27 18:51:24,173 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 54
2022-01-27 18:51:24,174 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 42
2022-01-27 18:51:24,175 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 43
2022-01-27 18:51:24,175 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 44
2022-01-27 18:51:24,176 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 45
2022-01-27 18:51:24,177 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 46
2022-01-27 18:51:24,177 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 47
2022-01-27 18:51:24,178 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 48
2022-01-27 18:51:24,178 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 49
2022-01-27 18:51:24,179 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 50
2022-01-27 18:51:24,179 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 51
2022-01-27 18:51:24,180 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 52
2022-01-27 18:51:24,181 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 55
2022-01-27 18:51:24,181 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 65
2022-01-27 18:51:24,182 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 66
2022-01-27 18:51:24,182 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 68
2022-01-27 18:51:24,183 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 56
2022-01-27 18:51:24,184 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 57
2022-01-27 18:51:24,185 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 58
2022-01-27 18:51:24,186 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 59
2022-01-27 18:51:24,187 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 60
2022-01-27 18:51:24,188 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 61
2022-01-27 18:51:24,188 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 62
2022-01-27 18:51:24,189 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 63
2022-01-27 18:51:24,192 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 64
2022-01-27 18:51:24,193 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 67
2022-01-27 18:51:24,202 - stpipe.WavecorrStep - INFO - Step WavecorrStep done
2022-01-27 18:51:24,257 - stpipe.FlatFieldStep - INFO - FlatFieldStep instance created.
2022-01-27 18:51:24,861 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:51:24,864 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-01-27 18:51:47,518 - stpipe.FlatFieldStep - INFO - Working on slit 53
2022-01-27 18:51:48,350 - stpipe.FlatFieldStep - INFO - Working on slit 54
2022-01-27 18:51:49,169 - stpipe.FlatFieldStep - INFO - Working on slit 42
2022-01-27 18:51:49,338 - stpipe.FlatFieldStep - INFO - Working on slit 43
2022-01-27 18:51:49,568 - stpipe.FlatFieldStep - INFO - Working on slit 44
2022-01-27 18:51:49,804 - stpipe.FlatFieldStep - INFO - Working on slit 45
2022-01-27 18:51:50,573 - stpipe.FlatFieldStep - INFO - Working on slit 46
2022-01-27 18:51:50,970 - stpipe.FlatFieldStep - INFO - Working on slit 47
2022-01-27 18:51:51,421 - stpipe.FlatFieldStep - INFO - Working on slit 48
2022-01-27 18:51:51,879 - stpipe.FlatFieldStep - INFO - Working on slit 49
2022-01-27 18:51:52,369 - stpipe.FlatFieldStep - INFO - Working on slit 50
2022-01-27 18:51:52,874 - stpipe.FlatFieldStep - INFO - Working on slit 51
2022-01-27 18:51:53,402 - stpipe.FlatFieldStep - INFO - Working on slit 52
2022-01-27 18:51:53,972 - stpipe.FlatFieldStep - INFO - Working on slit 55
2022-01-27 18:51:55,531 - stpipe.FlatFieldStep - INFO - Working on slit 65
2022-01-27 18:51:57,769 - stpipe.FlatFieldStep - INFO - Working on slit 66
2022-01-27 18:51:59,993 - stpipe.FlatFieldStep - INFO - Working on slit 68
2022-01-27 18:52:02,261 - stpipe.FlatFieldStep - INFO - Working on slit 56
2022-01-27 18:52:04,055 - stpipe.FlatFieldStep - INFO - Working on slit 57
2022-01-27 18:52:05,968 - stpipe.FlatFieldStep - INFO - Working on slit 58
2022-01-27 18:52:07,961 - stpipe.FlatFieldStep - INFO - Working on slit 59
2022-01-27 18:52:10,068 - stpipe.FlatFieldStep - INFO - Working on slit 60
2022-01-27 18:52:12,225 - stpipe.FlatFieldStep - INFO - Working on slit 61
2022-01-27 18:52:14,400 - stpipe.FlatFieldStep - INFO - Working on slit 62
2022-01-27 18:52:16,620 - stpipe.FlatFieldStep - INFO - Working on slit 63
2022-01-27 18:52:18,881 - stpipe.FlatFieldStep - INFO - Working on slit 64
2022-01-27 18:52:21,161 - stpipe.FlatFieldStep - INFO - Working on slit 67
2022-01-27 18:52:25,490 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep done
2022-01-27 18:52:25,549 - stpipe.PathLossStep - INFO - PathLossStep instance created.
2022-01-27 18:52:26,213 - stpipe.PathLossStep - INFO - Step PathLossStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:52:26,216 - stpipe.PathLossStep - INFO - Step PathLossStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2022-01-27 18:52:26,281 - stpipe.PathLossStep - INFO - Using PATHLOSS reference file /grp/crds/cache/references/jwst/jwst_nirspec_pathloss_0002.fits
2022-01-27 18:52:26,338 - stpipe.PathLossStep - INFO - Input exposure type is NRS_MSASPEC
2022-01-27 18:52:31,331 - stpipe.PathLossStep - INFO - Working on slit 0
2022-01-27 18:52:31,354 - stpipe.PathLossStep - INFO - Working on slit 1
2022-01-27 18:52:31,375 - stpipe.PathLossStep - INFO - Working on slit 2
2022-01-27 18:52:31,397 - stpipe.PathLossStep - INFO - Working on slit 3
2022-01-27 18:52:31,420 - stpipe.PathLossStep - INFO - Working on slit 4
2022-01-27 18:52:31,441 - stpipe.PathLossStep - INFO - Working on slit 5
2022-01-27 18:52:31,463 - stpipe.PathLossStep - INFO - Working on slit 6
2022-01-27 18:52:31,484 - stpipe.PathLossStep - INFO - Working on slit 7
2022-01-27 18:52:31,507 - stpipe.PathLossStep - INFO - Working on slit 8
2022-01-27 18:52:31,529 - stpipe.PathLossStep - INFO - Working on slit 9
2022-01-27 18:52:31,551 - stpipe.PathLossStep - INFO - Working on slit 10
2022-01-27 18:52:31,573 - stpipe.PathLossStep - INFO - Working on slit 11
2022-01-27 18:52:31,595 - stpipe.PathLossStep - INFO - Working on slit 12
2022-01-27 18:52:31,616 - stpipe.PathLossStep - INFO - Working on slit 13
2022-01-27 18:52:31,638 - stpipe.PathLossStep - INFO - Working on slit 14
2022-01-27 18:52:31,662 - stpipe.PathLossStep - INFO - Working on slit 15
2022-01-27 18:52:31,687 - stpipe.PathLossStep - INFO - Working on slit 16
2022-01-27 18:52:31,710 - stpipe.PathLossStep - INFO - Working on slit 17
2022-01-27 18:52:31,733 - stpipe.PathLossStep - INFO - Working on slit 18
2022-01-27 18:52:31,756 - stpipe.PathLossStep - INFO - Working on slit 19
2022-01-27 18:52:31,780 - stpipe.PathLossStep - INFO - Working on slit 20
2022-01-27 18:52:31,803 - stpipe.PathLossStep - INFO - Working on slit 21
2022-01-27 18:52:31,826 - stpipe.PathLossStep - INFO - Working on slit 22
2022-01-27 18:52:31,849 - stpipe.PathLossStep - INFO - Working on slit 23
2022-01-27 18:52:31,874 - stpipe.PathLossStep - INFO - Working on slit 24
2022-01-27 18:52:31,897 - stpipe.PathLossStep - INFO - Working on slit 25
2022-01-27 18:52:31,921 - stpipe.PathLossStep - INFO - Working on slit 26
2022-01-27 18:52:31,947 - stpipe.PathLossStep - INFO - Step PathLossStep done
2022-01-27 18:52:32,004 - stpipe.BarShadowStep - INFO - BarShadowStep instance created.
2022-01-27 18:52:32,491 - stpipe.BarShadowStep - INFO - Step BarShadowStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2022-01-27 18:52:32,494 - stpipe.BarShadowStep - INFO - Step BarShadowStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2022-01-27 18:52:32,561 - stpipe.BarShadowStep - INFO - Using BARSHADOW reference file /grp/crds/cache/references/jwst/jwst_nirspec_barshadow_0001.fits
2022-01-27 18:52:37,977 - stpipe.BarShadowStep - INFO - Working on slitlet 53
2022-01-27 18:52:38,028 - stpipe.BarShadowStep - INFO - Working on slitlet 54
2022-01-27 18:52:38,079 - stpipe.BarShadowStep - INFO - Working on slitlet 42
2022-01-27 18:52:38,108 - stpipe.BarShadowStep - INFO - Working on slitlet 43
2022-01-27 18:52:38,140 - stpipe.BarShadowStep - INFO - Working on slitlet 44
2022-01-27 18:52:38,171 - stpipe.BarShadowStep - INFO - Working on slitlet 45
2022-01-27 18:52:38,204 - stpipe.BarShadowStep - INFO - Working on slitlet 46
2022-01-27 18:52:38,242 - stpipe.BarShadowStep - INFO - Working on slitlet 47
2022-01-27 18:52:38,279 - stpipe.BarShadowStep - INFO - Working on slitlet 48
2022-01-27 18:52:38,316 - stpipe.BarShadowStep - INFO - Working on slitlet 49
2022-01-27 18:52:38,358 - stpipe.BarShadowStep - INFO - Working on slitlet 50
2022-01-27 18:52:38,398 - stpipe.BarShadowStep - INFO - Working on slitlet 51
2022-01-27 18:52:38,438 - stpipe.BarShadowStep - INFO - Working on slitlet 52
2022-01-27 18:52:38,482 - stpipe.BarShadowStep - INFO - Working on slitlet 55
2022-01-27 18:52:38,557 - stpipe.BarShadowStep - INFO - Working on slitlet 65
2022-01-27 18:52:38,674 - stpipe.BarShadowStep - INFO - Working on slitlet 66
2022-01-27 18:52:38,793 - stpipe.BarShadowStep - INFO - Working on slitlet 68
2022-01-27 18:52:38,913 - stpipe.BarShadowStep - INFO - Working on slitlet 56
2022-01-27 18:52:38,997 - stpipe.BarShadowStep - INFO - Working on slitlet 57
2022-01-27 18:52:39,089 - stpipe.BarShadowStep - INFO - Working on slitlet 58
2022-01-27 18:52:39,183 - stpipe.BarShadowStep - INFO - Working on slitlet 59
2022-01-27 18:52:39,281 - stpipe.BarShadowStep - INFO - Working on slitlet 60
2022-01-27 18:52:39,386 - stpipe.BarShadowStep - INFO - Working on slitlet 61
2022-01-27 18:52:39,497 - stpipe.BarShadowStep - INFO - Working on slitlet 62
2022-01-27 18:52:39,603 - stpipe.BarShadowStep - INFO - Working on slitlet 63
2022-01-27 18:52:39,715 - stpipe.BarShadowStep - INFO - Working on slitlet 64
2022-01-27 18:52:39,829 - stpipe.BarShadowStep - INFO - Working on slitlet 67
2022-01-27 18:52:39,944 - stpipe.BarShadowStep - INFO - Step BarShadowStep done
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice.
return _methods._mean(a, axis=axis, dtype=dtype,
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide
ret = um.true_divide(
Looping over open slitlets... Working with slitlet 53 Slitlet name in fits file previous to barshadow and in barshadow output file are the same. Calculating barshadow correction... Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.195e-03 median = -3.540e-05 stdev = 6.063e-03
Maximum Relativebarshadow_correction = 5.761e-04
Minimum Relativebarshadow_correction = -2.816e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 13%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 53? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 54
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.141e-03 median = -4.434e-05 stdev = 5.973e-03
Maximum Relativebarshadow_correction = 4.518e-04
Minimum Relativebarshadow_correction = -2.811e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 12%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 54? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 42
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -1.941e-03 median = -4.132e-06 stdev = 3.797e-03
Maximum Relativebarshadow_correction = 1.723e-04
Minimum Relativebarshadow_correction = -9.762e-03
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 0%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 42? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 43
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.452e-03 median = -1.345e-04 stdev = 4.581e-03
Maximum Relativebarshadow_correction = 2.783e-05
Minimum Relativebarshadow_correction = -1.190e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 0%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 43? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 44
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.153e-03 median = -1.298e-05 stdev = 4.213e-03
Maximum Relativebarshadow_correction = 3.550e-04
Minimum Relativebarshadow_correction = -1.099e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 0%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 44? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 45
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -4.093e-03 median = -2.808e-05 stdev = 6.837e-03
Maximum Relativebarshadow_correction = 2.014e-04
Minimum Relativebarshadow_correction = -2.027e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 34%
-> 3xtheshold = 20%
-> 5xtheshold = 20%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 45? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 46
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -4.412e-03 median = -4.677e-05 stdev = 7.847e-03
Maximum Relativebarshadow_correction = 8.356e-04
Minimum Relativebarshadow_correction = -2.599e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 33%
-> 3xtheshold = 17%
-> 5xtheshold = 17%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 46? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 47
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.541e-03 median = -3.473e-05 stdev = 4.773e-03
Maximum Relativebarshadow_correction = 3.042e-04
Minimum Relativebarshadow_correction = -1.535e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 6%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 47? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 48
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.390e-03 median = -3.040e-05 stdev = 4.545e-03
Maximum Relativebarshadow_correction = 3.286e-04
Minimum Relativebarshadow_correction = -1.392e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 4%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 48? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 49
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.906e-03 median = -7.570e-05 stdev = 6.372e-03
Maximum Relativebarshadow_correction = 4.926e-04
Minimum Relativebarshadow_correction = -2.797e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 14%
-> 5xtheshold = 5%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 49? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 50
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.709e-03 median = -5.759e-05 stdev = 6.547e-03
Maximum Relativebarshadow_correction = 4.152e-04
Minimum Relativebarshadow_correction = -2.450e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 27%
-> 3xtheshold = 19%
-> 5xtheshold = 19%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 50? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 51
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.173e-03 median = -4.135e-05 stdev = 5.743e-03
Maximum Relativebarshadow_correction = 3.422e-04
Minimum Relativebarshadow_correction = -2.122e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 20%
-> 5xtheshold = 12%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 51? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 52
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.786e-03 median = -2.736e-05 stdev = 5.242e-03
Maximum Relativebarshadow_correction = 3.349e-04
Minimum Relativebarshadow_correction = -2.091e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 22%
-> 3xtheshold = 20%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 52? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Working with slitlet 55 Slitlet name in fits file previous to barshadow and in barshadow output file are the same. Calculating barshadow correction... Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.847e-03 median = -4.987e-05 stdev = 5.629e-03
Maximum Relativebarshadow_correction = 8.210e-04
Minimum Relativebarshadow_correction = -2.875e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 55? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 65
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.953e-03 median = -6.132e-05 stdev = 5.815e-03
Maximum Relativebarshadow_correction = 1.896e-03
Minimum Relativebarshadow_correction = -2.933e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 65? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 66
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.909e-03 median = -6.152e-05 stdev = 5.698e-03
Maximum Relativebarshadow_correction = 1.364e-03
Minimum Relativebarshadow_correction = -2.912e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 66? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 68
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.023e-03 median = -6.120e-05 stdev = 5.911e-03
Maximum Relativebarshadow_correction = 1.874e-03
Minimum Relativebarshadow_correction = -2.874e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 68? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 56
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.762e-03 median = -5.814e-05 stdev = 5.465e-03
Maximum Relativebarshadow_correction = 8.661e-04
Minimum Relativebarshadow_correction = -2.912e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 56? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 57
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.117e-03 median = -5.980e-05 stdev = 6.014e-03
Maximum Relativebarshadow_correction = 9.866e-04
Minimum Relativebarshadow_correction = -2.872e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 57? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 58
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.065e-03 median = -4.995e-05 stdev = 5.904e-03
Maximum Relativebarshadow_correction = 7.673e-04
Minimum Relativebarshadow_correction = -2.949e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 58? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 59
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.917e-03 median = -5.683e-05 stdev = 5.668e-03
Maximum Relativebarshadow_correction = 7.876e-04
Minimum Relativebarshadow_correction = -2.899e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 59? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 60
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.055e-03 median = -6.258e-05 stdev = 5.881e-03
Maximum Relativebarshadow_correction = 1.090e-03
Minimum Relativebarshadow_correction = -2.874e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 60? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 61
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.889e-03 median = -5.227e-05 stdev = 5.674e-03
Maximum Relativebarshadow_correction = 1.279e-03
Minimum Relativebarshadow_correction = -2.899e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 61? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 62
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.812e-03 median = -5.423e-05 stdev = 5.611e-03
Maximum Relativebarshadow_correction = 1.796e-03
Minimum Relativebarshadow_correction = -2.871e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 62? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 63
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.045e-03 median = -6.162e-05 stdev = 5.899e-03
Maximum Relativebarshadow_correction = 1.109e-03
Minimum Relativebarshadow_correction = -2.880e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 63? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 64
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.029e-03 median = -5.944e-05 stdev = 5.870e-03
Maximum Relativebarshadow_correction = 1.419e-03
Minimum Relativebarshadow_correction = -2.871e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 64? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 67
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.006e-03 median = -5.915e-05 stdev = 5.856e-03
Maximum Relativebarshadow_correction = 1.246e-03
Minimum Relativebarshadow_correction = -2.849e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 67? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
* Test of barshadow_correction for slitlet 53 PASSED.
* Test of barshadow_correction for slitlet 54 PASSED.
* Test of barshadow_correction for slitlet 42 PASSED.
* Test of barshadow_correction for slitlet 43 PASSED.
* Test of barshadow_correction for slitlet 44 PASSED.
* Test of barshadow_correction for slitlet 45 PASSED.
* Test of barshadow_correction for slitlet 46 PASSED.
* Test of barshadow_correction for slitlet 47 PASSED.
* Test of barshadow_correction for slitlet 48 PASSED.
* Test of barshadow_correction for slitlet 49 PASSED.
* Test of barshadow_correction for slitlet 50 PASSED.
* Test of barshadow_correction for slitlet 51 PASSED.
* Test of barshadow_correction for slitlet 52 PASSED.
* Test of barshadow_correction for slitlet 55 PASSED.
* Test of barshadow_correction for slitlet 65 PASSED.
* Test of barshadow_correction for slitlet 66 PASSED.
* Test of barshadow_correction for slitlet 68 PASSED.
* Test of barshadow_correction for slitlet 56 PASSED.
* Test of barshadow_correction for slitlet 57 PASSED.
* Test of barshadow_correction for slitlet 58 PASSED.
* Test of barshadow_correction for slitlet 59 PASSED.
* Test of barshadow_correction for slitlet 60 PASSED.
* Test of barshadow_correction for slitlet 61 PASSED.
* Test of barshadow_correction for slitlet 62 PASSED.
* Test of barshadow_correction for slitlet 63 PASSED.
* Test of barshadow_correction for slitlet 64 PASSED.
* Test of barshadow_correction for slitlet 67 PASSED.
*** Final result for barshadow test will be reported as PASSED ***
('* Barshadow validation test took ', '56.24277305603027 seconds to finish.')
Did barshadow validation test passed? True
Testing files for detector: nrs2
Working with uncal_file: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_g140m_line1_NRS2_uncal.fits
2022-01-27 18:53:37,138 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nirspec_pars-detector1pipeline_0004.asdf
2022-01-27 18:53:37,156 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2022-01-27 18:53:37,158 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2022-01-27 18:53:37,160 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2022-01-27 18:53:37,161 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2022-01-27 18:53:37,163 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2022-01-27 18:53:37,165 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2022-01-27 18:53:37,167 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2022-01-27 18:53:37,169 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2022-01-27 18:53:37,170 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2022-01-27 18:53:37,172 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2022-01-27 18:53:37,174 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2022-01-27 18:53:37,175 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2022-01-27 18:53:37,177 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2022-01-27 18:53:37,179 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2022-01-27 18:53:37,180 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2022-01-27 18:53:37,182 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2022-01-27 18:53:37,186 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:379: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_g140m_line1_NRS2_uncal.fits' mode='rb' closefd=True>
gc.collect()
2022-01-27 18:53:38,295 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa/mos_g140m_line1_NRS2_uncal.fits',).
2022-01-27 18:53:38,307 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2022-01-27 18:53:38,485 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'mos_g140m_line1_NRS2_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2022-01-27 18:53:38,509 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0143.fits'.
2022-01-27 18:53:38,513 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits'.
2022-01-27 18:53:38,518 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0020.fits'.
2022-01-27 18:53:38,522 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0025.fits'.
2022-01-27 18:53:38,526 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2022-01-27 18:53:38,527 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits'.
2022-01-27 18:53:38,530 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2022-01-27 18:53:38,531 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2022-01-27 18:53:38,532 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2022-01-27 18:53:38,533 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0022.fits'.
2022-01-27 18:53:38,537 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0104.fits'.
2022-01-27 18:53:38,541 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2022-01-27 18:53:38,542 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2022-01-27 18:53:38,543 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2022-01-27 18:53:39,983 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:39,985 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:53:40,113 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2022-01-27 18:53:40,115 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2022-01-27 18:53:40,118 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2022-01-27 18:53:41,240 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:41,243 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:53:41,274 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0025.fits
2022-01-27 18:53:41,563 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2022-01-27 18:53:42,323 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:42,325 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:53:42,348 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0022.fits
2022-01-27 18:53:42,794 - stpipe.Detector1Pipeline.saturation - INFO - Detected 83201 saturated pixels
2022-01-27 18:53:42,823 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2022-01-27 18:53:42,834 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2022-01-27 18:53:43,404 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:43,406 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:53:43,407 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped.
2022-01-27 18:53:43,409 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2022-01-27 18:53:43,966 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:43,968 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:53:43,991 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0104.fits
2022-01-27 18:53:44,265 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2022-01-27 18:53:44,839 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:44,841 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2022-01-27 18:53:44,851 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
2022-01-27 18:53:44,852 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
2022-01-27 18:53:44,853 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
2022-01-27 18:53:44,853 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000
2022-01-27 18:53:44,854 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True
2022-01-27 18:53:47,500 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2022-01-27 18:53:48,563 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:48,565 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:53:48,592 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0020.fits
2022-01-27 18:53:49,531 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2022-01-27 18:53:50,671 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:50,674 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'dark_output': None}
2022-01-27 18:53:50,699 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0143.fits
2022-01-27 18:53:51,035 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=6, nframes=1, groupgap=0
2022-01-27 18:53:51,037 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=10, nframes=1, groupgap=0
2022-01-27 18:53:51,322 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2022-01-27 18:53:52,446 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:52,449 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-01-27 18:53:52,461 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma
2022-01-27 18:53:52,476 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2022-01-27 18:53:52,544 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits
2022-01-27 18:53:52,604 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection
2022-01-27 18:53:52,877 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method
2022-01-27 18:53:53,099 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1:
2022-01-27 18:53:54,881 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 39124 pixels with at least one CR and at least four groups
2022-01-27 18:53:54,882 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 2731 pixels with at least one CR and three groups
2022-01-27 18:53:54,883 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 48084 pixels with at least one CR and two groups
2022-01-27 18:53:58,161 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 5.2824 sec
2022-01-27 18:53:58,165 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 5.703925
2022-01-27 18:53:58,171 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2022-01-27 18:53:59,292 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:53:59,294 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2022-01-27 18:53:59,332 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits
2022-01-27 18:53:59,388 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2022-01-27 18:53:59,445 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2022-01-27 18:53:59,446 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:1169: RuntimeWarning: invalid value encountered in multiply
var_p4[num_int, :, :, :] *= (segs_4[num_int, :, :, :] > 0)
2022-01-27 18:54:23,387 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 6
2022-01-27 18:54:23,389 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2022-01-27 18:54:23,609 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2022-01-27 18:54:24,563 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:54:24,566 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:54:24,639 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-01-27 18:54:24,641 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-01-27 18:54:24,646 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-01-27 18:54:25,272 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:54:25,276 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/tmp/tmpwohgfepa'}
2022-01-27 18:54:25,348 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2022-01-27 18:54:25,350 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2022-01-27 18:54:25,356 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2022-01-27 18:54:25,360 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2022-01-27 18:54:25,363 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2022-01-27 18:54:25,376 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2022-01-27 18:54:26,005 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:54:26,009 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-01-27 18:54:26,189 - stpipe.AssignWcsStep - INFO - Retrieving open MSA slitlets for msa_metadata_id = 1 and dither_index = 1
2022-01-27 18:54:26,418 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2022-01-27 18:54:26,419 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2022-01-27 18:54:26,420 - stpipe.AssignWcsStep - INFO - theta_y correction: 0.0002496099796717191 deg
2022-01-27 18:54:26,423 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:54:27,262 - stpipe.AssignWcsStep - INFO - Removing slit 65 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,277 - stpipe.AssignWcsStep - INFO - Removing slit 66 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,292 - stpipe.AssignWcsStep - INFO - Removing slit 68 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,328 - stpipe.AssignWcsStep - INFO - Removing slit 58 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,344 - stpipe.AssignWcsStep - INFO - Removing slit 59 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,358 - stpipe.AssignWcsStep - INFO - Removing slit 60 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,374 - stpipe.AssignWcsStep - INFO - Removing slit 61 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,388 - stpipe.AssignWcsStep - INFO - Removing slit 62 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,401 - stpipe.AssignWcsStep - INFO - Removing slit 63 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,414 - stpipe.AssignWcsStep - INFO - Removing slit 64 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,428 - stpipe.AssignWcsStep - INFO - Removing slit 67 from the list of open slits because the WCS bounding_box is completely outside the detector.
2022-01-27 18:54:27,429 - stpipe.AssignWcsStep - INFO - Slits projected on detector NRS2: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57]
2022-01-27 18:54:27,431 - stpipe.AssignWcsStep - INFO - Computing WCS for 57 open slitlets
2022-01-27 18:54:27,469 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2022-01-27 18:54:27,470 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2022-01-27 18:54:27,471 - stpipe.AssignWcsStep - INFO - theta_y correction: 0.0002496099796717191 deg
2022-01-27 18:54:27,473 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:54:27,486 - stpipe.AssignWcsStep - INFO - SPORDER= -1, wrange=[9.7e-07, 1.89e-06]
2022-01-27 18:54:27,620 - stpipe.AssignWcsStep - INFO - There are 27 open slits in quadrant 1
2022-01-27 18:54:27,854 - stpipe.AssignWcsStep - INFO - There are 27 open slits in quadrant 2
2022-01-27 18:54:28,100 - stpipe.AssignWcsStep - INFO - There are 1 open slits in quadrant 3
2022-01-27 18:54:28,112 - stpipe.AssignWcsStep - INFO - There are 2 open slits in quadrant 4
2022-01-27 18:54:28,131 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 5
2022-01-27 18:54:28,299 - stpipe.AssignWcsStep - INFO - Created a NIRSPEC nrs_msaspec pipeline with references {'distortion': None, 'filteroffset': None, 'specwcs': None, 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nirspec_wavelengthrange_0004.asdf', 'camera': '/grp/crds/cache/references/jwst/jwst_nirspec_camera_0004.asdf', 'collimator': '/grp/crds/cache/references/jwst/jwst_nirspec_collimator_0004.asdf', 'disperser': '/grp/crds/cache/references/jwst/jwst_nirspec_disperser_0032.asdf', 'fore': '/grp/crds/cache/references/jwst/jwst_nirspec_fore_0023.asdf', 'fpa': '/grp/crds/cache/references/jwst/jwst_nirspec_fpa_0005.asdf', 'msa': '/grp/crds/cache/references/jwst/jwst_nirspec_msa_0005.asdf', 'ote': '/grp/crds/cache/references/jwst/jwst_nirspec_ote_0005.asdf', 'ifupost': None, 'ifufore': None, 'ifuslicer': None, 'msametafile': 'V8460001000101_msa.fits'}
2022-01-27 18:54:30,421 - stpipe.AssignWcsStep - INFO - COMPLETED assign_wcs
2022-01-27 18:54:30,438 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep done
2022-01-27 18:54:30,455 - stpipe.MSAFlagOpenStep - INFO - MSAFlagOpenStep instance created.
2022-01-27 18:54:31,419 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:54:31,424 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:54:31,450 - stpipe.MSAFlagOpenStep - INFO - Using reference file /grp/crds/cache/references/jwst/jwst_nirspec_msaoper_0001.json
2022-01-27 18:54:31,454 - stpipe.JwstStep - INFO - JwstStep instance created.
2022-01-27 18:54:31,596 - stpipe.MSAFlagOpenStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2022-01-27 18:54:31,598 - stpipe.MSAFlagOpenStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2022-01-27 18:54:31,600 - stpipe.MSAFlagOpenStep - INFO - theta_y correction: 0.0002496099796717191 deg
2022-01-27 18:54:31,602 - stpipe.MSAFlagOpenStep - INFO - theta_x correction: 0.0 deg
2022-01-27 18:54:31,617 - stpipe.MSAFlagOpenStep - INFO - SPORDER= -1, wrange=[9.7e-07, 1.89e-06]
2022-01-27 18:54:31,749 - stpipe.MSAFlagOpenStep - INFO - There are 5 open slits in quadrant 1
2022-01-27 18:54:31,792 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 2
2022-01-27 18:54:31,840 - stpipe.MSAFlagOpenStep - INFO - There are 9 open slits in quadrant 3
2022-01-27 18:54:31,918 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 4
2022-01-27 18:54:31,946 - stpipe.MSAFlagOpenStep - INFO - There are 0 open slits in quadrant 5
2022-01-27 18:54:49,114 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep done
2022-01-27 18:54:49,129 - stpipe.Extract2dStep - INFO - Extract2dStep instance created.
2022-01-27 18:54:50,063 - stpipe.Extract2dStep - INFO - Step Extract2dStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:54:50,068 - stpipe.Extract2dStep - INFO - Step Extract2dStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}
2022-01-27 18:54:50,091 - stpipe.Extract2dStep - INFO - EXP_TYPE is NRS_MSASPEC
2022-01-27 18:54:50,977 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 6
2022-01-27 18:54:50,978 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 138 1619
2022-01-27 18:54:50,979 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1761 1785
2022-01-27 18:54:51,179 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:54:51,190 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.263159350 -45.671304678 156.263027991 -45.671181725 156.262965146 -45.671213584 156.263096502 -45.671336538
2022-01-27 18:54:51,193 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.263159350 -45.671304678 156.263027991 -45.671181725 156.262965146 -45.671213584 156.263096502 -45.671336538
2022-01-27 18:54:52,656 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 7
2022-01-27 18:54:52,657 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 138 1619
2022-01-27 18:54:52,658 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1756 1780
2022-01-27 18:54:52,850 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:54:52,864 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.263031777 -45.671185268 156.262900430 -45.671062325 156.262837587 -45.671094183 156.262968931 -45.671217127
2022-01-27 18:54:52,866 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.263031777 -45.671185268 156.262900430 -45.671062325 156.262837587 -45.671094183 156.262968931 -45.671217127
2022-01-27 18:54:53,772 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 8
2022-01-27 18:54:53,774 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 137 1618
2022-01-27 18:54:53,775 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1806 1830
2022-01-27 18:54:53,962 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:54:53,973 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264221225 -45.672423837 156.264089757 -45.672300789 156.264026890 -45.672332658 156.264158355 -45.672455707
2022-01-27 18:54:53,975 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264221225 -45.672423837 156.264089757 -45.672300789 156.264026890 -45.672332658 156.264158355 -45.672455707
2022-01-27 18:54:55,591 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 9
2022-01-27 18:54:55,593 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 137 1618
2022-01-27 18:54:55,593 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1801 1825
2022-01-27 18:54:55,848 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:54:55,861 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264093546 -45.672304335 156.263962090 -45.672181297 156.263899225 -45.672213165 156.264030678 -45.672336204
2022-01-27 18:54:55,863 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264093546 -45.672304335 156.263962090 -45.672181297 156.263899225 -45.672213165 156.264030678 -45.672336204
2022-01-27 18:54:56,930 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 10
2022-01-27 18:54:56,932 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 137 1618
2022-01-27 18:54:56,933 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1796 1820
2022-01-27 18:54:57,156 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:54:57,172 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.263965879 -45.672184843 156.263834436 -45.672061816 156.263771574 -45.672093683 156.263903014 -45.672216711
2022-01-27 18:54:57,174 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.263965879 -45.672184843 156.263834436 -45.672061816 156.263771574 -45.672093683 156.263903014 -45.672216711
2022-01-27 18:54:59,188 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 11
2022-01-27 18:54:59,189 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 136 1617
2022-01-27 18:54:59,190 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1836 1860
2022-01-27 18:54:59,397 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:54:59,408 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264900700 -45.673185083 156.264769161 -45.673061972 156.264706280 -45.673093849 156.264837816 -45.673216961
2022-01-27 18:54:59,409 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264900700 -45.673185083 156.264769161 -45.673061972 156.264706280 -45.673093849 156.264837816 -45.673216961
2022-01-27 18:55:00,943 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 14
2022-01-27 18:55:00,945 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 104 1582
2022-01-27 18:55:00,946 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1221 1243
2022-01-27 18:55:01,124 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:01,133 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.249021000 -45.658685479 156.248891047 -45.658563629 156.248828487 -45.658595378 156.248958437 -45.658717230
2022-01-27 18:55:01,135 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.249021000 -45.658685479 156.248891047 -45.658563629 156.248828487 -45.658595378 156.248958437 -45.658717230
2022-01-27 18:55:02,036 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 15
2022-01-27 18:55:02,038 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 122 1604
2022-01-27 18:55:02,038 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1886 1910
2022-01-27 18:55:02,220 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:02,231 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.265657550 -45.674645528 156.265525910 -45.674522304 156.265463012 -45.674554193 156.265594650 -45.674677417
2022-01-27 18:55:02,233 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.265657550 -45.674645528 156.265525910 -45.674522304 156.265463012 -45.674554193 156.265594650 -45.674677417
2022-01-27 18:55:03,877 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 16
2022-01-27 18:55:03,880 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 117 1598
2022-01-27 18:55:03,880 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1821 1845
2022-01-27 18:55:04,162 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:04,175 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.263909649 -45.673134588 156.263778173 -45.673011497 156.263715311 -45.673043371 156.263846784 -45.673166463
2022-01-27 18:55:04,177 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.263909649 -45.673134588 156.263778173 -45.673011497 156.263715311 -45.673043371 156.263846784 -45.673166463
2022-01-27 18:55:05,236 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 17
2022-01-27 18:55:05,238 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 115 1597
2022-01-27 18:55:05,238 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1851 1875
2022-01-27 18:55:05,536 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:05,551 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264589177 -45.673896098 156.264457630 -45.673772943 156.264394753 -45.673804824 156.264526298 -45.673927980
2022-01-27 18:55:05,553 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264589177 -45.673896098 156.264457630 -45.673772943 156.264394753 -45.673804824 156.264526298 -45.673927980
2022-01-27 18:55:08,408 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 18
2022-01-27 18:55:08,409 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 115 1597
2022-01-27 18:55:08,410 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1846 1870
2022-01-27 18:55:08,638 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:08,652 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264461421 -45.673776492 156.264329887 -45.673653347 156.264267013 -45.673685227 156.264398544 -45.673808373
2022-01-27 18:55:08,655 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264461421 -45.673776492 156.264329887 -45.673653347 156.264267013 -45.673685227 156.264398544 -45.673808373
2022-01-27 18:55:09,709 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 19
2022-01-27 18:55:09,711 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 93 1571
2022-01-27 18:55:09,712 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1336 1358
2022-01-27 18:55:09,928 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:09,942 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.251408362 -45.661673296 156.251278132 -45.661551203 156.251215522 -45.661582975 156.251345749 -45.661705069
2022-01-27 18:55:09,944 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.251408362 -45.661673296 156.251278132 -45.661551203 156.251215522 -45.661582975 156.251345749 -45.661705069
2022-01-27 18:55:11,914 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 21
2022-01-27 18:55:11,915 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 89 1568
2022-01-27 18:55:11,915 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1381 1403
2022-01-27 18:55:12,103 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:12,113 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.252374207 -45.662828704 156.252243867 -45.662706516 156.252181238 -45.662738296 156.252311575 -45.662860485
2022-01-27 18:55:12,115 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.252374207 -45.662828704 156.252243867 -45.662706516 156.252181238 -45.662738296 156.252311575 -45.662860485
2022-01-27 18:55:13,031 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 25
2022-01-27 18:55:13,033 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 70 1547
2022-01-27 18:55:13,033 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1276 1298
2022-01-27 18:55:13,219 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:13,230 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.249200048 -45.660601994 156.249070003 -45.660480012 156.249007436 -45.660511773 156.249137478 -45.660633755
2022-01-27 18:55:13,232 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.249200048 -45.660601994 156.249070003 -45.660480012 156.249007436 -45.660511773 156.249137478 -45.660633755
2022-01-27 18:55:14,971 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 26
2022-01-27 18:55:14,972 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 65 1544
2022-01-27 18:55:14,973 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1562 1584
2022-01-27 18:55:15,155 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:15,166 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.255900113 -45.667634746 156.255769353 -45.667512168 156.255706649 -45.667543987 156.255837406 -45.667666566
2022-01-27 18:55:15,167 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.255900113 -45.667634746 156.255769353 -45.667512168 156.255706649 -45.667543987 156.255837406 -45.667666566
2022-01-27 18:55:16,054 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 27
2022-01-27 18:55:16,055 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 31 1507
2022-01-27 18:55:16,056 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1201 1222
2022-01-27 18:55:16,237 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:16,248 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.246097982 -45.659439921 156.245968181 -45.659318074 156.245905674 -45.659349821 156.246035471 -45.659471670
2022-01-27 18:55:16,250 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.246097982 -45.659439921 156.245968181 -45.659318074 156.245905674 -45.659349821 156.246035471 -45.659471670
2022-01-27 18:55:17,982 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 29
2022-01-27 18:55:17,983 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 22 1503
2022-01-27 18:55:17,984 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1867 1889
2022-01-27 18:55:18,167 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:18,178 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.261846987 -45.675840555 156.261715536 -45.675717309 156.261652705 -45.675749201 156.261784154 -45.675872448
2022-01-27 18:55:18,180 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.261846987 -45.675840555 156.261715536 -45.675717309 156.261652705 -45.675749201 156.261784154 -45.675872448
2022-01-27 18:55:19,077 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 31
2022-01-27 18:55:19,078 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1464
2022-01-27 18:55:19,079 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1367 1388
2022-01-27 18:55:19,262 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:19,273 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.248622769 -45.664184605 156.248492610 -45.664062392 156.248430047 -45.664094174 156.248560203 -45.664216388
2022-01-27 18:55:19,275 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.248622769 -45.664184605 156.248492610 -45.664062392 156.248430047 -45.664094174 156.248560203 -45.664216388
2022-01-27 18:55:20,160 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 32
2022-01-27 18:55:20,162 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1432
2022-01-27 18:55:20,162 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1352 1372
2022-01-27 18:55:20,342 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:21,238 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.247206881 -45.664355302 156.247076805 -45.664233103 156.247014266 -45.664264884 156.247144339 -45.664387085
2022-01-27 18:55:21,240 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.247206881 -45.664355302 156.247076805 -45.664233103 156.247014266 -45.664264884 156.247144339 -45.664387085
2022-01-27 18:55:22,144 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 33
2022-01-27 18:55:22,145 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1418
2022-01-27 18:55:22,146 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1272 1292
2022-01-27 18:55:22,325 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:22,337 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.244841867 -45.662633161 156.244712012 -45.662511121 156.244649520 -45.662542887 156.244779372 -45.662664928
2022-01-27 18:55:22,338 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.244841867 -45.662633161 156.244712012 -45.662511121 156.244649520 -45.662542887 156.244779372 -45.662664928
2022-01-27 18:55:23,244 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 35
2022-01-27 18:55:23,245 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1428
2022-01-27 18:55:23,246 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1722 1743
2022-01-27 18:55:24,235 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:24,245 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.255896650 -45.673517700 156.255765657 -45.673394713 156.255702938 -45.673426578 156.255833929 -45.673549566
2022-01-27 18:55:24,246 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.255896650 -45.673517700 156.255765657 -45.673394713 156.255702938 -45.673426578 156.255833929 -45.673549566
2022-01-27 18:55:25,146 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 37
2022-01-27 18:55:25,147 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1412
2022-01-27 18:55:25,148 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1663 1683
2022-01-27 18:55:25,327 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:25,337 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.253937935 -45.672305027 156.253807112 -45.672182158 156.253744431 -45.672214010 156.253875252 -45.672336880
2022-01-27 18:55:25,339 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.253937935 -45.672305027 156.253807112 -45.672182158 156.253744431 -45.672214010 156.253875252 -45.672336880
2022-01-27 18:55:26,996 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 38
2022-01-27 18:55:26,997 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1404
2022-01-27 18:55:26,998 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1603 1623
2022-01-27 18:55:27,174 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:27,184 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.252241050 -45.670961715 156.252110387 -45.670838969 156.252047741 -45.670870808 156.252178401 -45.670993555
2022-01-27 18:55:27,186 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.252241050 -45.670961715 156.252110387 -45.670838969 156.252047741 -45.670870808 156.252178401 -45.670993555
2022-01-27 18:55:28,107 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 39
2022-01-27 18:55:28,108 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1385
2022-01-27 18:55:28,109 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1242 1262
2022-01-27 18:55:28,285 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:28,296 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.243049984 -45.662448591 156.242920250 -45.662326596 156.242857790 -45.662358358 156.242987521 -45.662480354
2022-01-27 18:55:28,298 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.243049984 -45.662448591 156.242920250 -45.662326596 156.242857790 -45.662358358 156.242987521 -45.662480354
2022-01-27 18:55:29,183 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 41
2022-01-27 18:55:29,184 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1393
2022-01-27 18:55:29,185 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1768 1788
2022-01-27 18:55:29,362 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:29,372 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.255829101 -45.675209536 156.255698046 -45.675086431 156.255635323 -45.675118310 156.255766375 -45.675241415
2022-01-27 18:55:29,374 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.255829101 -45.675209536 156.255698046 -45.675086431 156.255635323 -45.675118310 156.255766375 -45.675241415
2022-01-27 18:55:31,211 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 53
2022-01-27 18:55:31,212 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 819
2022-01-27 18:55:31,213 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1315 1329
2022-01-27 18:55:31,384 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:31,395 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.226123221 -45.673642180 156.225994086 -45.673519691 156.225931834 -45.673551545 156.226060967 -45.673674035
2022-01-27 18:55:31,397 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.226123221 -45.673642180 156.225994086 -45.673519691 156.225931834 -45.673551545 156.226060967 -45.673674035
2022-01-27 18:55:32,291 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 54
2022-01-27 18:55:32,292 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 819
2022-01-27 18:55:32,293 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1305 1319
2022-01-27 18:55:32,465 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:32,478 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.225872406 -45.673404272 156.225743296 -45.673281804 156.225681049 -45.673313656 156.225810156 -45.673436124
2022-01-27 18:55:32,479 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.225872406 -45.673404272 156.225743296 -45.673281804 156.225681049 -45.673313656 156.225810156 -45.673436124
2022-01-27 18:55:34,250 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 1
2022-01-27 18:55:34,250 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 118 1591
2022-01-27 18:55:34,251 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 33 52
2022-01-27 18:55:34,430 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:34,441 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.221266819 -45.630196596 156.221139727 -45.630076839 156.221077689 -45.630108429 156.221204778 -45.630228186
2022-01-27 18:55:34,443 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.221266819 -45.630196596 156.221139727 -45.630076839 156.221077689 -45.630108429 156.221204778 -45.630228186
2022-01-27 18:55:35,337 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 2
2022-01-27 18:55:35,338 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 124 1598
2022-01-27 18:55:35,339 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 331 351
2022-01-27 18:55:35,543 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:35,554 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.228476955 -45.637109572 156.228349188 -45.636989367 156.228287022 -45.637020983 156.228414786 -45.637141189
2022-01-27 18:55:35,556 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.228476955 -45.637109572 156.228349188 -45.636989367 156.228287022 -45.637020983 156.228414786 -45.637141189
2022-01-27 18:55:37,318 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 3
2022-01-27 18:55:37,319 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 116 1589
2022-01-27 18:55:37,320 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 54 73
2022-01-27 18:55:37,496 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:37,506 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.221674541 -45.630705151 156.221547408 -45.630585366 156.221485363 -45.630616957 156.221612493 -45.630736743
2022-01-27 18:55:37,508 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.221674541 -45.630705151 156.221547408 -45.630585366 156.221485363 -45.630616957 156.221612493 -45.630736743
2022-01-27 18:55:38,377 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 4
2022-01-27 18:55:38,378 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 111 1584
2022-01-27 18:55:38,379 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 160 179
2022-01-27 18:55:38,556 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:38,567 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.224010549 -45.633278787 156.223883188 -45.633158845 156.223821102 -45.633190445 156.223948460 -45.633310387
2022-01-27 18:55:38,568 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.224010549 -45.633278787 156.223883188 -45.633158845 156.223821102 -45.633190445 156.223948460 -45.633310387
2022-01-27 18:55:40,324 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 5
2022-01-27 18:55:40,325 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 99 1573
2022-01-27 18:55:40,325 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 306 326
2022-01-27 18:55:40,504 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:40,514 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.227084510 -45.636919416 156.226956832 -45.636799245 156.226894691 -45.636830857 156.227022367 -45.636951029
2022-01-27 18:55:40,516 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.227084510 -45.636919416 156.226956832 -45.636799245 156.226894691 -45.636830857 156.227022367 -45.636951029
2022-01-27 18:55:41,391 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 12
2022-01-27 18:55:41,392 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 91 1566
2022-01-27 18:55:41,392 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 483 503
2022-01-27 18:55:41,569 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:41,580 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.230998580 -45.641224458 156.230870498 -45.641103991 156.230808285 -45.641135623 156.230936364 -45.641256090
2022-01-27 18:55:41,581 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.230998580 -45.641224458 156.230870498 -45.641103991 156.230808285 -45.641135623 156.230936364 -45.641256090
2022-01-27 18:55:42,458 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 13
2022-01-27 18:55:42,459 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 80 1553
2022-01-27 18:55:42,459 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 94 113
2022-01-27 18:55:43,554 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:43,564 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.221461889 -45.632246282 156.221334710 -45.632126430 156.221272668 -45.632158022 156.221399846 -45.632277874
2022-01-27 18:55:43,566 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.221461889 -45.632246282 156.221334710 -45.632126430 156.221272668 -45.632158022 156.221399846 -45.632277874
2022-01-27 18:55:44,443 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 20
2022-01-27 18:55:44,444 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 76 1551
2022-01-27 18:55:44,445 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 750 770
2022-01-27 18:55:44,624 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:44,634 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.236828252 -45.647826217 156.236699542 -45.647705266 156.236637217 -45.647736933 156.236765924 -45.647857884
2022-01-27 18:55:44,636 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.236828252 -45.647826217 156.236699542 -45.647705266 156.236637217 -45.647736933 156.236765924 -45.647857884
2022-01-27 18:55:45,516 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 22
2022-01-27 18:55:45,517 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 68 1542
2022-01-27 18:55:45,518 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 644 664
2022-01-27 18:55:45,696 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:45,707 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.234035860 -45.645450737 156.233907420 -45.645329977 156.233845148 -45.645361628 156.233973585 -45.645482389
2022-01-27 18:55:45,708 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.234035860 -45.645450737 156.233907420 -45.645329977 156.233845148 -45.645361628 156.233973585 -45.645482389
2022-01-27 18:55:47,454 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 23
2022-01-27 18:55:47,455 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 52 1525
2022-01-27 18:55:47,456 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 115 133
2022-01-27 18:55:47,633 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:47,643 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.221012951 -45.633191592 156.220885760 -45.633071703 156.220823726 -45.633103294 156.220950915 -45.633223183
2022-01-27 18:55:47,645 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.221012951 -45.633191592 156.220885760 -45.633071703 156.220823726 -45.633103294 156.220950915 -45.633223183
2022-01-27 18:55:48,532 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 24
2022-01-27 18:55:48,533 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 69 1545
2022-01-27 18:55:48,534 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 785 805
2022-01-27 18:55:48,711 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:48,722 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.237444560 -45.648779316 156.237315772 -45.648658296 156.237253434 -45.648689968 156.237382219 -45.648810988
2022-01-27 18:55:48,723 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.237444560 -45.648779316 156.237315772 -45.648658296 156.237253434 -45.648689968 156.237382219 -45.648810988
2022-01-27 18:55:50,532 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 28
2022-01-27 18:55:50,533 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 11 1485
2022-01-27 18:55:50,534 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 660 679
2022-01-27 18:55:50,712 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:50,722 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.232517711 -45.646764241 156.232389309 -45.646643431 156.232327062 -45.646675084 156.232455462 -45.646795894
2022-01-27 18:55:50,724 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.232517711 -45.646764241 156.232389309 -45.646643431 156.232327062 -45.646675084 156.232455462 -45.646795894
2022-01-27 18:55:51,612 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 30
2022-01-27 18:55:51,613 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1457
2022-01-27 18:55:51,614 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 700 719
2022-01-27 18:55:51,791 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:51,801 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.232568977 -45.648183467 156.232440513 -45.648062572 156.232378263 -45.648094230 156.232506725 -45.648215126
2022-01-27 18:55:51,803 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.232568977 -45.648183467 156.232440513 -45.648062572 156.232378263 -45.648094230 156.232506725 -45.648215126
2022-01-27 18:55:53,660 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 34
2022-01-27 18:55:53,661 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1394
2022-01-27 18:55:53,662 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 715 734
2022-01-27 18:55:53,837 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:53,848 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.230879662 -45.649585075 156.230751242 -45.649464125 156.230689019 -45.649495787 156.230817437 -45.649616737
2022-01-27 18:55:53,849 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.230879662 -45.649585075 156.230751242 -45.649464125 156.230689019 -45.649495787 156.230817437 -45.649616737
2022-01-27 18:55:54,747 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 36
2022-01-27 18:55:54,748 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1377
2022-01-27 18:55:54,748 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 449 466
2022-01-27 18:55:54,925 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:54,936 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.224033871 -45.643507774 156.223906106 -45.643387302 156.223844011 -45.643418924 156.223971774 -45.643539396
2022-01-27 18:55:54,937 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.224033871 -45.643507774 156.223906106 -45.643387302 156.223844011 -45.643418924 156.223971774 -45.643539396
2022-01-27 18:55:55,816 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 40
2022-01-27 18:55:55,817 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1343
2022-01-27 18:55:55,817 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 217 234
2022-01-27 18:55:55,988 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:55,999 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217486084 -45.638574970 156.217358883 -45.638454874 156.217296902 -45.638486467 156.217424102 -45.638606563
2022-01-27 18:55:56,000 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217486084 -45.638574970 156.217358883 -45.638454874 156.217296902 -45.638486467 156.217424102 -45.638606563
2022-01-27 18:55:57,810 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 42
2022-01-27 18:55:57,812 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1296
2022-01-27 18:55:57,813 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 545 562
2022-01-27 18:55:57,987 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:57,998 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.223646010 -45.647128995 156.223518121 -45.647008321 156.223456024 -45.647039957 156.223583911 -45.647160632
2022-01-27 18:55:58,000 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.223646010 -45.647128995 156.223518121 -45.647008321 156.223456024 -45.647039957 156.223583911 -45.647160632
2022-01-27 18:55:58,886 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 43
2022-01-27 18:55:58,887 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1246
2022-01-27 18:55:58,888 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 414 430
2022-01-27 18:55:59,068 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:55:59,079 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218966486 -45.644829601 156.218838959 -45.644709141 156.218776943 -45.644740759 156.218904467 -45.644861220
2022-01-27 18:55:59,081 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218966486 -45.644829601 156.218838959 -45.644709141 156.218776943 -45.644740759 156.218904467 -45.644861220
2022-01-27 18:56:00,902 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 44
2022-01-27 18:56:00,903 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1246
2022-01-27 18:56:00,904 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 404 420
2022-01-27 18:56:01,074 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:01,084 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218718991 -45.644595818 156.218591488 -45.644475376 156.218529475 -45.644506992 156.218656977 -45.644627436
2022-01-27 18:56:01,086 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218718991 -45.644595818 156.218591488 -45.644475376 156.218529475 -45.644506992 156.218656977 -45.644627436
2022-01-27 18:56:01,967 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 45
2022-01-27 18:56:01,968 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1185
2022-01-27 18:56:01,969 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 530 546
2022-01-27 18:56:02,143 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:02,154 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.219673020 -45.648613077 156.219545303 -45.648492383 156.219483265 -45.648524021 156.219610979 -45.648644716
2022-01-27 18:56:02,156 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.219673020 -45.648613077 156.219545303 -45.648492383 156.219483265 -45.648524021 156.219610979 -45.648644716
2022-01-27 18:56:03,032 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 46
2022-01-27 18:56:03,033 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1158
2022-01-27 18:56:03,034 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 202 218
2022-01-27 18:56:03,207 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:03,217 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.211127421 -45.641279813 156.211000463 -45.641159678 156.210938572 -45.641191268 156.211065527 -45.641311404
2022-01-27 18:56:03,219 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.211127421 -45.641279813 156.211000463 -45.641159678 156.210938572 -45.641191268 156.211065527 -45.641311404
2022-01-27 18:56:05,110 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 47
2022-01-27 18:56:05,111 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1091
2022-01-27 18:56:05,112 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 566 581
2022-01-27 18:56:05,281 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:05,291 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217456055 -45.651006881 156.217328370 -45.650886079 156.217266356 -45.650917729 156.217394038 -45.651038531
2022-01-27 18:56:05,293 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217456055 -45.651006881 156.217328370 -45.650886079 156.217266356 -45.650917729 156.217394038 -45.651038531
2022-01-27 18:56:06,164 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 48
2022-01-27 18:56:06,165 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1091
2022-01-27 18:56:06,166 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 561 576
2022-01-27 18:56:06,336 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:06,346 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217332149 -45.650889654 156.217204477 -45.650768862 156.217142464 -45.650800511 156.217270135 -45.650921304
2022-01-27 18:56:06,348 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217332149 -45.650889654 156.217204477 -45.650768862 156.217142464 -45.650800511 156.217270135 -45.650921304
2022-01-27 18:56:08,201 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 49
2022-01-27 18:56:08,202 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1067
2022-01-27 18:56:08,202 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 632 647
2022-01-27 18:56:08,371 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:08,381 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218210913 -45.652969013 156.218083107 -45.652848076 156.218021073 -45.652879740 156.218148877 -45.653000678
2022-01-27 18:56:08,383 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218210913 -45.652969013 156.218083107 -45.652848076 156.218021073 -45.652879740 156.218148877 -45.653000678
2022-01-27 18:56:09,275 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 50
2022-01-27 18:56:09,276 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1048
2022-01-27 18:56:09,276 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 238 253
2022-01-27 18:56:09,447 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:09,457 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.208399869 -45.643929179 156.208272959 -45.643808942 156.208211096 -45.643840541 156.208338005 -45.643960778
2022-01-27 18:56:09,459 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.208399869 -45.643929179 156.208272959 -45.643808942 156.208211096 -45.643840541 156.208338005 -45.643960778
2022-01-27 18:56:10,334 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 51
2022-01-27 18:56:10,335 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1034
2022-01-27 18:56:10,336 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 430 445
2022-01-27 18:56:10,502 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:10,512 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.212403238 -45.648718689 156.212275928 -45.648598111 156.212213993 -45.648629742 156.212341301 -45.648750320
2022-01-27 18:56:10,514 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.212403238 -45.648718689 156.212275928 -45.648598111 156.212213993 -45.648629742 156.212341301 -45.648750320
2022-01-27 18:56:12,408 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 52
2022-01-27 18:56:12,410 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 998
2022-01-27 18:56:12,410 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 803 817
2022-01-27 18:56:12,575 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:12,585 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.219947139 -45.658234585 156.219819020 -45.658113276 156.219756938 -45.658144979 156.219885055 -45.658266289
2022-01-27 18:56:12,587 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.219947139 -45.658234585 156.219819020 -45.658113276 156.219756938 -45.658144979 156.219885055 -45.658266289
2022-01-27 18:56:13,464 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 55
2022-01-27 18:56:13,466 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 297
2022-01-27 18:56:13,466 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1415 1430
2022-01-27 18:56:13,631 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:13,641 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.211226719 -45.684941334 156.211098073 -45.684818233 156.211035880 -45.684850241 156.211164524 -45.684973343
2022-01-27 18:56:13,643 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.211226719 -45.684941334 156.211098073 -45.684818233 156.211035880 -45.684850241 156.211164524 -45.684973343
2022-01-27 18:56:14,514 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 56
2022-01-27 18:56:14,515 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 143
2022-01-27 18:56:14,516 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 768 783
2022-01-27 18:56:14,678 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:14,689 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.191122501 -45.671742959 156.190995485 -45.671621176 156.190933579 -45.671653049 156.191060593 -45.671774833
2022-01-27 18:56:14,690 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.191122501 -45.671742959 156.190995485 -45.671621176 156.190933579 -45.671653049 156.191060593 -45.671774833
2022-01-27 18:56:16,614 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 57
2022-01-27 18:56:16,615 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 74
2022-01-27 18:56:16,616 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 354 370
2022-01-27 18:56:16,779 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2022-01-27 18:56:16,789 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.179343124 -45.662963603 156.179216994 -45.662842617 156.179155236 -45.662874401 156.179281365 -45.662995389
2022-01-27 18:56:16,790 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.179343124 -45.662963603 156.179216994 -45.662842617 156.179155236 -45.662874401 156.179281365 -45.662995389
2022-01-27 18:56:20,966 - stpipe.Extract2dStep - INFO - Step Extract2dStep done
2022-01-27 18:56:24,080 - stpipe.SourceTypeStep - INFO - SourceTypeStep instance created.
2022-01-27 18:56:25,034 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:56:25,037 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:56:25,045 - stpipe.SourceTypeStep - INFO - Input EXP_TYPE is NRS_MSASPEC
2022-01-27 18:56:25,046 - stpipe.SourceTypeStep - INFO - source_id=6, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,048 - stpipe.SourceTypeStep - INFO - source_id=7, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,049 - stpipe.SourceTypeStep - INFO - source_id=8, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,050 - stpipe.SourceTypeStep - INFO - source_id=9, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,052 - stpipe.SourceTypeStep - INFO - source_id=10, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,053 - stpipe.SourceTypeStep - INFO - source_id=11, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,054 - stpipe.SourceTypeStep - INFO - source_id=14, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,055 - stpipe.SourceTypeStep - INFO - source_id=15, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,057 - stpipe.SourceTypeStep - INFO - source_id=16, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,058 - stpipe.SourceTypeStep - INFO - source_id=17, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,059 - stpipe.SourceTypeStep - INFO - source_id=18, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,061 - stpipe.SourceTypeStep - INFO - source_id=19, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,062 - stpipe.SourceTypeStep - INFO - source_id=21, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,063 - stpipe.SourceTypeStep - INFO - source_id=25, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,064 - stpipe.SourceTypeStep - INFO - source_id=26, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,066 - stpipe.SourceTypeStep - INFO - source_id=27, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,067 - stpipe.SourceTypeStep - INFO - source_id=29, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,068 - stpipe.SourceTypeStep - INFO - source_id=31, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,069 - stpipe.SourceTypeStep - INFO - source_id=32, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,071 - stpipe.SourceTypeStep - INFO - source_id=33, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,072 - stpipe.SourceTypeStep - INFO - source_id=35, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,073 - stpipe.SourceTypeStep - INFO - source_id=37, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,074 - stpipe.SourceTypeStep - INFO - source_id=38, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,076 - stpipe.SourceTypeStep - INFO - source_id=39, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,077 - stpipe.SourceTypeStep - INFO - source_id=41, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,078 - stpipe.SourceTypeStep - INFO - source_id=53, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,080 - stpipe.SourceTypeStep - INFO - source_id=54, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,081 - stpipe.SourceTypeStep - INFO - source_id=1, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,082 - stpipe.SourceTypeStep - INFO - source_id=2, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,083 - stpipe.SourceTypeStep - INFO - source_id=3, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,085 - stpipe.SourceTypeStep - INFO - source_id=4, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,086 - stpipe.SourceTypeStep - INFO - source_id=5, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,087 - stpipe.SourceTypeStep - INFO - source_id=12, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,088 - stpipe.SourceTypeStep - INFO - source_id=13, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,089 - stpipe.SourceTypeStep - INFO - source_id=20, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,090 - stpipe.SourceTypeStep - INFO - source_id=22, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,092 - stpipe.SourceTypeStep - INFO - source_id=23, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,093 - stpipe.SourceTypeStep - INFO - source_id=24, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,094 - stpipe.SourceTypeStep - INFO - source_id=28, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,095 - stpipe.SourceTypeStep - INFO - source_id=30, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,096 - stpipe.SourceTypeStep - INFO - source_id=34, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,098 - stpipe.SourceTypeStep - INFO - source_id=36, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,099 - stpipe.SourceTypeStep - INFO - source_id=40, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,100 - stpipe.SourceTypeStep - INFO - source_id=42, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,101 - stpipe.SourceTypeStep - INFO - source_id=43, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,102 - stpipe.SourceTypeStep - INFO - source_id=44, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,104 - stpipe.SourceTypeStep - INFO - source_id=45, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,105 - stpipe.SourceTypeStep - INFO - source_id=46, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,106 - stpipe.SourceTypeStep - INFO - source_id=47, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,107 - stpipe.SourceTypeStep - INFO - source_id=48, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,108 - stpipe.SourceTypeStep - INFO - source_id=49, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,110 - stpipe.SourceTypeStep - INFO - source_id=50, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,111 - stpipe.SourceTypeStep - INFO - source_id=51, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,112 - stpipe.SourceTypeStep - INFO - source_id=52, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,113 - stpipe.SourceTypeStep - INFO - source_id=55, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,114 - stpipe.SourceTypeStep - INFO - source_id=56, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,115 - stpipe.SourceTypeStep - INFO - source_id=57, stellarity=0.0000, type=EXTENDED
2022-01-27 18:56:25,118 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep done
2022-01-27 18:56:25,237 - stpipe.WavecorrStep - INFO - WavecorrStep instance created.
2022-01-27 18:56:26,057 - stpipe.WavecorrStep - INFO - Step WavecorrStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:56:26,059 - stpipe.WavecorrStep - INFO - Step WavecorrStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-01-27 18:56:26,180 - stpipe.WavecorrStep - INFO - Using WAVECORR reference file /grp/crds/cache/references/jwst/jwst_nirspec_wavecorr_0004.asdf
2022-01-27 18:56:36,754 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 6
2022-01-27 18:56:36,756 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 7
2022-01-27 18:56:36,756 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 8
2022-01-27 18:56:36,757 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 9
2022-01-27 18:56:36,757 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 10
2022-01-27 18:56:36,758 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 11
2022-01-27 18:56:36,759 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 14
2022-01-27 18:56:36,759 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 15
2022-01-27 18:56:36,760 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 16
2022-01-27 18:56:36,760 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 17
2022-01-27 18:56:36,761 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 18
2022-01-27 18:56:36,761 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 19
2022-01-27 18:56:36,762 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 21
2022-01-27 18:56:36,762 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 25
2022-01-27 18:56:36,763 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 26
2022-01-27 18:56:36,763 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 27
2022-01-27 18:56:36,764 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 29
2022-01-27 18:56:36,765 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 31
2022-01-27 18:56:36,765 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 32
2022-01-27 18:56:36,766 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 33
2022-01-27 18:56:36,766 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 35
2022-01-27 18:56:36,766 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 37
2022-01-27 18:56:36,767 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 38
2022-01-27 18:56:36,767 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 39
2022-01-27 18:56:36,768 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 41
2022-01-27 18:56:36,768 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 53
2022-01-27 18:56:36,768 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 54
2022-01-27 18:56:36,772 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 1
2022-01-27 18:56:36,772 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 2
2022-01-27 18:56:36,772 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 3
2022-01-27 18:56:36,773 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 4
2022-01-27 18:56:36,773 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 5
2022-01-27 18:56:36,774 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 12
2022-01-27 18:56:36,774 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 13
2022-01-27 18:56:36,775 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 20
2022-01-27 18:56:36,775 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 22
2022-01-27 18:56:36,775 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 23
2022-01-27 18:56:36,776 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 24
2022-01-27 18:56:36,776 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 28
2022-01-27 18:56:36,776 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 30
2022-01-27 18:56:36,776 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 34
2022-01-27 18:56:36,777 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 36
2022-01-27 18:56:36,777 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 40
2022-01-27 18:56:36,777 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 42
2022-01-27 18:56:36,778 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 43
2022-01-27 18:56:36,778 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 44
2022-01-27 18:56:36,778 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 45
2022-01-27 18:56:36,779 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 46
2022-01-27 18:56:36,779 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 47
2022-01-27 18:56:36,779 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 48
2022-01-27 18:56:36,780 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 49
2022-01-27 18:56:36,780 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 50
2022-01-27 18:56:36,780 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 51
2022-01-27 18:56:36,780 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 52
2022-01-27 18:56:36,781 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 55
2022-01-27 18:56:36,781 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 56
2022-01-27 18:56:36,781 - stpipe.WavecorrStep - INFO - Detected a EXTENDED source type in slit 57
2022-01-27 18:56:36,786 - stpipe.WavecorrStep - INFO - Step WavecorrStep done
2022-01-27 18:56:36,888 - stpipe.FlatFieldStep - INFO - FlatFieldStep instance created.
2022-01-27 18:56:38,447 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:56:38,453 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-01-27 18:57:13,033 - stpipe.FlatFieldStep - INFO - Working on slit 6
2022-01-27 18:57:15,270 - stpipe.FlatFieldStep - INFO - Working on slit 7
2022-01-27 18:57:17,503 - stpipe.FlatFieldStep - INFO - Working on slit 8
2022-01-27 18:57:19,744 - stpipe.FlatFieldStep - INFO - Working on slit 9
2022-01-27 18:57:21,987 - stpipe.FlatFieldStep - INFO - Working on slit 10
2022-01-27 18:57:24,219 - stpipe.FlatFieldStep - INFO - Working on slit 11
2022-01-27 18:57:26,457 - stpipe.FlatFieldStep - INFO - Working on slit 14
2022-01-27 18:57:28,684 - stpipe.FlatFieldStep - INFO - Working on slit 15
2022-01-27 18:57:30,911 - stpipe.FlatFieldStep - INFO - Working on slit 16
2022-01-27 18:57:33,149 - stpipe.FlatFieldStep - INFO - Working on slit 17
2022-01-27 18:57:35,377 - stpipe.FlatFieldStep - INFO - Working on slit 18
2022-01-27 18:57:37,615 - stpipe.FlatFieldStep - INFO - Working on slit 19
2022-01-27 18:57:39,869 - stpipe.FlatFieldStep - INFO - Working on slit 21
2022-01-27 18:57:42,113 - stpipe.FlatFieldStep - INFO - Working on slit 25
2022-01-27 18:57:44,306 - stpipe.FlatFieldStep - INFO - Working on slit 26
2022-01-27 18:57:46,546 - stpipe.FlatFieldStep - INFO - Working on slit 27
2022-01-27 18:57:48,742 - stpipe.FlatFieldStep - INFO - Working on slit 29
2022-01-27 18:57:50,950 - stpipe.FlatFieldStep - INFO - Working on slit 31
2022-01-27 18:57:53,145 - stpipe.FlatFieldStep - INFO - Working on slit 32
2022-01-27 18:57:55,314 - stpipe.FlatFieldStep - INFO - Working on slit 33
2022-01-27 18:57:57,459 - stpipe.FlatFieldStep - INFO - Working on slit 35
2022-01-27 18:57:59,629 - stpipe.FlatFieldStep - INFO - Working on slit 37
2022-01-27 18:58:01,749 - stpipe.FlatFieldStep - INFO - Working on slit 38
2022-01-27 18:58:03,848 - stpipe.FlatFieldStep - INFO - Working on slit 39
2022-01-27 18:58:05,940 - stpipe.FlatFieldStep - INFO - Working on slit 41
2022-01-27 18:58:08,020 - stpipe.FlatFieldStep - INFO - Working on slit 53
2022-01-27 18:58:09,295 - stpipe.FlatFieldStep - INFO - Working on slit 54
2022-01-27 18:58:10,580 - stpipe.FlatFieldStep - INFO - Working on slit 1
2022-01-27 18:58:14,089 - stpipe.FlatFieldStep - INFO - Working on slit 2
2022-01-27 18:58:16,355 - stpipe.FlatFieldStep - INFO - Working on slit 3
2022-01-27 18:58:18,569 - stpipe.FlatFieldStep - INFO - Working on slit 4
2022-01-27 18:58:20,781 - stpipe.FlatFieldStep - INFO - Working on slit 5
2022-01-27 18:58:23,016 - stpipe.FlatFieldStep - INFO - Working on slit 12
2022-01-27 18:58:25,254 - stpipe.FlatFieldStep - INFO - Working on slit 13
2022-01-27 18:58:27,488 - stpipe.FlatFieldStep - INFO - Working on slit 20
2022-01-27 18:58:29,732 - stpipe.FlatFieldStep - INFO - Working on slit 22
2022-01-27 18:58:31,944 - stpipe.FlatFieldStep - INFO - Working on slit 23
2022-01-27 18:58:34,145 - stpipe.FlatFieldStep - INFO - Working on slit 24
2022-01-27 18:58:36,309 - stpipe.FlatFieldStep - INFO - Working on slit 28
2022-01-27 18:58:38,443 - stpipe.FlatFieldStep - INFO - Working on slit 30
2022-01-27 18:58:40,595 - stpipe.FlatFieldStep - INFO - Working on slit 34
2022-01-27 18:58:42,670 - stpipe.FlatFieldStep - INFO - Working on slit 36
2022-01-27 18:58:44,715 - stpipe.FlatFieldStep - INFO - Working on slit 40
2022-01-27 18:58:46,740 - stpipe.FlatFieldStep - INFO - Working on slit 42
2022-01-27 18:58:48,695 - stpipe.FlatFieldStep - INFO - Working on slit 43
2022-01-27 18:58:50,581 - stpipe.FlatFieldStep - INFO - Working on slit 44
2022-01-27 18:58:52,468 - stpipe.FlatFieldStep - INFO - Working on slit 45
2022-01-27 18:58:54,287 - stpipe.FlatFieldStep - INFO - Working on slit 46
2022-01-27 18:58:56,060 - stpipe.FlatFieldStep - INFO - Working on slit 47
2022-01-27 18:58:57,714 - stpipe.FlatFieldStep - INFO - Working on slit 48
2022-01-27 18:58:59,378 - stpipe.FlatFieldStep - INFO - Working on slit 49
2022-01-27 18:59:00,990 - stpipe.FlatFieldStep - INFO - Working on slit 50
2022-01-27 18:59:02,598 - stpipe.FlatFieldStep - INFO - Working on slit 51
2022-01-27 18:59:04,178 - stpipe.FlatFieldStep - INFO - Working on slit 52
2022-01-27 18:59:05,700 - stpipe.FlatFieldStep - INFO - Working on slit 55
2022-01-27 18:59:06,238 - stpipe.FlatFieldStep - INFO - Working on slit 56
2022-01-27 18:59:06,559 - stpipe.FlatFieldStep - INFO - Working on slit 57
2022-01-27 18:59:11,200 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep done
2022-01-27 18:59:11,304 - stpipe.PathLossStep - INFO - PathLossStep instance created.
2022-01-27 18:59:12,842 - stpipe.PathLossStep - INFO - Step PathLossStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:59:12,847 - stpipe.PathLossStep - INFO - Step PathLossStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2022-01-27 18:59:12,969 - stpipe.PathLossStep - INFO - Using PATHLOSS reference file /grp/crds/cache/references/jwst/jwst_nirspec_pathloss_0002.fits
2022-01-27 18:59:13,034 - stpipe.PathLossStep - INFO - Input exposure type is NRS_MSASPEC
2022-01-27 18:59:23,831 - stpipe.PathLossStep - INFO - Working on slit 0
2022-01-27 18:59:23,855 - stpipe.PathLossStep - INFO - Working on slit 1
2022-01-27 18:59:23,877 - stpipe.PathLossStep - INFO - Working on slit 2
2022-01-27 18:59:23,899 - stpipe.PathLossStep - INFO - Working on slit 3
2022-01-27 18:59:23,921 - stpipe.PathLossStep - INFO - Working on slit 4
2022-01-27 18:59:23,943 - stpipe.PathLossStep - INFO - Working on slit 5
2022-01-27 18:59:23,965 - stpipe.PathLossStep - INFO - Working on slit 6
2022-01-27 18:59:23,986 - stpipe.PathLossStep - INFO - Working on slit 7
2022-01-27 18:59:24,008 - stpipe.PathLossStep - INFO - Working on slit 8
2022-01-27 18:59:24,031 - stpipe.PathLossStep - INFO - Working on slit 9
2022-01-27 18:59:24,052 - stpipe.PathLossStep - INFO - Working on slit 10
2022-01-27 18:59:24,074 - stpipe.PathLossStep - INFO - Working on slit 11
2022-01-27 18:59:24,096 - stpipe.PathLossStep - INFO - Working on slit 12
2022-01-27 18:59:24,119 - stpipe.PathLossStep - INFO - Working on slit 13
2022-01-27 18:59:24,141 - stpipe.PathLossStep - INFO - Working on slit 14
2022-01-27 18:59:24,162 - stpipe.PathLossStep - INFO - Working on slit 15
2022-01-27 18:59:24,184 - stpipe.PathLossStep - INFO - Working on slit 16
2022-01-27 18:59:24,207 - stpipe.PathLossStep - INFO - Working on slit 17
2022-01-27 18:59:24,229 - stpipe.PathLossStep - INFO - Working on slit 18
2022-01-27 18:59:24,250 - stpipe.PathLossStep - INFO - Working on slit 19
2022-01-27 18:59:24,272 - stpipe.PathLossStep - INFO - Working on slit 20
2022-01-27 18:59:24,295 - stpipe.PathLossStep - INFO - Working on slit 21
2022-01-27 18:59:24,316 - stpipe.PathLossStep - INFO - Working on slit 22
2022-01-27 18:59:24,338 - stpipe.PathLossStep - INFO - Working on slit 23
2022-01-27 18:59:24,360 - stpipe.PathLossStep - INFO - Working on slit 24
2022-01-27 18:59:24,383 - stpipe.PathLossStep - INFO - Working on slit 25
2022-01-27 18:59:24,404 - stpipe.PathLossStep - INFO - Working on slit 26
2022-01-27 18:59:24,426 - stpipe.PathLossStep - INFO - Working on slit 27
2022-01-27 18:59:24,447 - stpipe.PathLossStep - INFO - Working on slit 28
2022-01-27 18:59:24,470 - stpipe.PathLossStep - INFO - Working on slit 29
2022-01-27 18:59:24,492 - stpipe.PathLossStep - INFO - Working on slit 30
2022-01-27 18:59:24,514 - stpipe.PathLossStep - INFO - Working on slit 31
2022-01-27 18:59:24,536 - stpipe.PathLossStep - INFO - Working on slit 32
2022-01-27 18:59:24,559 - stpipe.PathLossStep - INFO - Working on slit 33
2022-01-27 18:59:24,581 - stpipe.PathLossStep - INFO - Working on slit 34
2022-01-27 18:59:24,603 - stpipe.PathLossStep - INFO - Working on slit 35
2022-01-27 18:59:24,625 - stpipe.PathLossStep - INFO - Working on slit 36
2022-01-27 18:59:24,648 - stpipe.PathLossStep - INFO - Working on slit 37
2022-01-27 18:59:24,670 - stpipe.PathLossStep - INFO - Working on slit 38
2022-01-27 18:59:24,692 - stpipe.PathLossStep - INFO - Working on slit 39
2022-01-27 18:59:24,714 - stpipe.PathLossStep - INFO - Working on slit 40
2022-01-27 18:59:24,737 - stpipe.PathLossStep - INFO - Working on slit 41
2022-01-27 18:59:24,758 - stpipe.PathLossStep - INFO - Working on slit 42
2022-01-27 18:59:24,780 - stpipe.PathLossStep - INFO - Working on slit 43
2022-01-27 18:59:24,802 - stpipe.PathLossStep - INFO - Working on slit 44
2022-01-27 18:59:24,825 - stpipe.PathLossStep - INFO - Working on slit 45
2022-01-27 18:59:24,846 - stpipe.PathLossStep - INFO - Working on slit 46
2022-01-27 18:59:24,868 - stpipe.PathLossStep - INFO - Working on slit 47
2022-01-27 18:59:24,890 - stpipe.PathLossStep - INFO - Working on slit 48
2022-01-27 18:59:24,913 - stpipe.PathLossStep - INFO - Working on slit 49
2022-01-27 18:59:24,934 - stpipe.PathLossStep - INFO - Working on slit 50
2022-01-27 18:59:24,956 - stpipe.PathLossStep - INFO - Working on slit 51
2022-01-27 18:59:24,977 - stpipe.PathLossStep - INFO - Working on slit 52
2022-01-27 18:59:25,000 - stpipe.PathLossStep - INFO - Working on slit 53
2022-01-27 18:59:25,022 - stpipe.PathLossStep - INFO - Working on slit 54
2022-01-27 18:59:25,043 - stpipe.PathLossStep - INFO - Working on slit 55
2022-01-27 18:59:25,064 - stpipe.PathLossStep - INFO - Working on slit 56
2022-01-27 18:59:25,091 - stpipe.PathLossStep - INFO - Step PathLossStep done
2022-01-27 18:59:25,193 - stpipe.BarShadowStep - INFO - BarShadowStep instance created.
2022-01-27 18:59:26,530 - stpipe.BarShadowStep - INFO - Step BarShadowStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2022-01-27 18:59:26,534 - stpipe.BarShadowStep - INFO - Step BarShadowStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2022-01-27 18:59:26,646 - stpipe.BarShadowStep - INFO - Using BARSHADOW reference file /grp/crds/cache/references/jwst/jwst_nirspec_barshadow_0001.fits
2022-01-27 18:59:37,932 - stpipe.BarShadowStep - INFO - Working on slitlet 6
2022-01-27 18:59:38,063 - stpipe.BarShadowStep - INFO - Working on slitlet 7
2022-01-27 18:59:38,186 - stpipe.BarShadowStep - INFO - Working on slitlet 8
2022-01-27 18:59:38,305 - stpipe.BarShadowStep - INFO - Working on slitlet 9
2022-01-27 18:59:38,429 - stpipe.BarShadowStep - INFO - Working on slitlet 10
2022-01-27 18:59:38,547 - stpipe.BarShadowStep - INFO - Working on slitlet 11
2022-01-27 18:59:38,667 - stpipe.BarShadowStep - INFO - Working on slitlet 14
2022-01-27 18:59:38,782 - stpipe.BarShadowStep - INFO - Working on slitlet 15
2022-01-27 18:59:38,902 - stpipe.BarShadowStep - INFO - Working on slitlet 16
2022-01-27 18:59:39,022 - stpipe.BarShadowStep - INFO - Working on slitlet 17
2022-01-27 18:59:39,146 - stpipe.BarShadowStep - INFO - Working on slitlet 18
2022-01-27 18:59:39,267 - stpipe.BarShadowStep - INFO - Working on slitlet 19
2022-01-27 18:59:39,383 - stpipe.BarShadowStep - INFO - Working on slitlet 21
2022-01-27 18:59:39,502 - stpipe.BarShadowStep - INFO - Working on slitlet 25
2022-01-27 18:59:39,616 - stpipe.BarShadowStep - INFO - Working on slitlet 26
2022-01-27 18:59:39,729 - stpipe.BarShadowStep - INFO - Working on slitlet 27
2022-01-27 18:59:39,842 - stpipe.BarShadowStep - INFO - Working on slitlet 29
2022-01-27 18:59:39,957 - stpipe.BarShadowStep - INFO - Working on slitlet 31
2022-01-27 18:59:40,067 - stpipe.BarShadowStep - INFO - Working on slitlet 32
2022-01-27 18:59:40,176 - stpipe.BarShadowStep - INFO - Working on slitlet 33
2022-01-27 18:59:40,281 - stpipe.BarShadowStep - INFO - Working on slitlet 35
2022-01-27 18:59:40,392 - stpipe.BarShadowStep - INFO - Working on slitlet 37
2022-01-27 18:59:40,500 - stpipe.BarShadowStep - INFO - Working on slitlet 38
2022-01-27 18:59:40,605 - stpipe.BarShadowStep - INFO - Working on slitlet 39
2022-01-27 18:59:40,712 - stpipe.BarShadowStep - INFO - Working on slitlet 41
2022-01-27 18:59:40,819 - stpipe.BarShadowStep - INFO - Working on slitlet 53
2022-01-27 18:59:40,882 - stpipe.BarShadowStep - INFO - Working on slitlet 54
2022-01-27 18:59:40,946 - stpipe.BarShadowStep - INFO - Working on slitlet 1
2022-01-27 18:59:41,057 - stpipe.BarShadowStep - INFO - Working on slitlet 2
2022-01-27 18:59:41,168 - stpipe.BarShadowStep - INFO - Working on slitlet 3
2022-01-27 18:59:41,274 - stpipe.BarShadowStep - INFO - Working on slitlet 4
2022-01-27 18:59:41,384 - stpipe.BarShadowStep - INFO - Working on slitlet 5
2022-01-27 18:59:41,494 - stpipe.BarShadowStep - INFO - Working on slitlet 12
2022-01-27 18:59:41,603 - stpipe.BarShadowStep - INFO - Working on slitlet 13
2022-01-27 18:59:41,710 - stpipe.BarShadowStep - INFO - Working on slitlet 20
2022-01-27 18:59:41,820 - stpipe.BarShadowStep - INFO - Working on slitlet 22
2022-01-27 18:59:41,929 - stpipe.BarShadowStep - INFO - Working on slitlet 23
2022-01-27 18:59:42,034 - stpipe.BarShadowStep - INFO - Working on slitlet 24
2022-01-27 18:59:42,143 - stpipe.BarShadowStep - INFO - Working on slitlet 28
2022-01-27 18:59:42,250 - stpipe.BarShadowStep - INFO - Working on slitlet 30
2022-01-27 18:59:42,360 - stpipe.BarShadowStep - INFO - Working on slitlet 34
2022-01-27 18:59:42,463 - stpipe.BarShadowStep - INFO - Working on slitlet 36
2022-01-27 18:59:42,560 - stpipe.BarShadowStep - INFO - Working on slitlet 40
2022-01-27 18:59:42,657 - stpipe.BarShadowStep - INFO - Working on slitlet 42
2022-01-27 18:59:42,749 - stpipe.BarShadowStep - INFO - Working on slitlet 43
2022-01-27 18:59:42,837 - stpipe.BarShadowStep - INFO - Working on slitlet 44
2022-01-27 18:59:42,927 - stpipe.BarShadowStep - INFO - Working on slitlet 45
2022-01-27 18:59:43,013 - stpipe.BarShadowStep - INFO - Working on slitlet 46
2022-01-27 18:59:43,098 - stpipe.BarShadowStep - INFO - Working on slitlet 47
2022-01-27 18:59:43,178 - stpipe.BarShadowStep - INFO - Working on slitlet 48
2022-01-27 18:59:43,256 - stpipe.BarShadowStep - INFO - Working on slitlet 49
2022-01-27 18:59:43,333 - stpipe.BarShadowStep - INFO - Working on slitlet 50
2022-01-27 18:59:43,412 - stpipe.BarShadowStep - INFO - Working on slitlet 51
2022-01-27 18:59:43,487 - stpipe.BarShadowStep - INFO - Working on slitlet 52
2022-01-27 18:59:43,559 - stpipe.BarShadowStep - INFO - Working on slitlet 55
2022-01-27 18:59:43,601 - stpipe.BarShadowStep - INFO - Working on slitlet 56
2022-01-27 18:59:43,633 - stpipe.BarShadowStep - INFO - Working on slitlet 57
2022-01-27 18:59:43,667 - stpipe.BarShadowStep - INFO - Step BarShadowStep done
Looping over open slitlets... Working with slitlet 6 Slitlet name in fits file previous to barshadow and in barshadow output file are the same. Calculating barshadow correction... Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.016e-03 median = -6.641e-05 stdev = 5.836e-03
Maximum Relativebarshadow_correction = 1.718e-03
Minimum Relativebarshadow_correction = -2.815e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 6? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 7
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.018e-03 median = -6.669e-05 stdev = 5.843e-03
Maximum Relativebarshadow_correction = 1.708e-03
Minimum Relativebarshadow_correction = -2.869e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 7? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 8
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.994e-03 median = -6.250e-05 stdev = 5.798e-03
Maximum Relativebarshadow_correction = 1.902e-03
Minimum Relativebarshadow_correction = -2.855e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 8? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 9
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.003e-03 median = -6.510e-05 stdev = 5.814e-03
Maximum Relativebarshadow_correction = 1.475e-03
Minimum Relativebarshadow_correction = -2.841e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 9? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 10
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.005e-03 median = -6.453e-05 stdev = 5.819e-03
Maximum Relativebarshadow_correction = 1.839e-03
Minimum Relativebarshadow_correction = -2.832e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 10? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 11
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.979e-03 median = -6.470e-05 stdev = 5.777e-03
Maximum Relativebarshadow_correction = 1.923e-03
Minimum Relativebarshadow_correction = -2.812e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 11? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 14
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.025e-03 median = -6.299e-05 stdev = 5.859e-03
Maximum Relativebarshadow_correction = 1.204e-03
Minimum Relativebarshadow_correction = -2.914e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 14? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 15
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.978e-03 median = -6.246e-05 stdev = 5.778e-03
Maximum Relativebarshadow_correction = 1.915e-03
Minimum Relativebarshadow_correction = -2.869e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 15? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 16
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.036e-03 median = -6.537e-05 stdev = 5.877e-03
Maximum Relativebarshadow_correction = 1.679e-03
Minimum Relativebarshadow_correction = -2.866e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 16? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 17
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.017e-03 median = -6.536e-05 stdev = 5.839e-03
Maximum Relativebarshadow_correction = 1.718e-03
Minimum Relativebarshadow_correction = -2.817e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 17? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 18
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.025e-03 median = -6.563e-05 stdev = 5.855e-03
Maximum Relativebarshadow_correction = 1.725e-03
Minimum Relativebarshadow_correction = -2.825e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 18? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 19
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.039e-03 median = -6.201e-05 stdev = 5.949e-03
Maximum Relativebarshadow_correction = 1.905e-03
Minimum Relativebarshadow_correction = -2.937e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 19? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 21
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.992e-03 median = -6.215e-05 stdev = 5.883e-03
Maximum Relativebarshadow_correction = 1.457e-03
Minimum Relativebarshadow_correction = -2.892e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 21? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 25
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.044e-03 median = -6.318e-05 stdev = 5.970e-03
Maximum Relativebarshadow_correction = 1.541e-03
Minimum Relativebarshadow_correction = -2.959e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 25? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 26
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.911e-03 median = -6.285e-05 stdev = 5.688e-03
Maximum Relativebarshadow_correction = 1.757e-03
Minimum Relativebarshadow_correction = -2.821e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 26? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 27
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.986e-03 median = -6.222e-05 stdev = 5.903e-03
Maximum Relativebarshadow_correction = 1.925e-03
Minimum Relativebarshadow_correction = -2.912e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 27? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 29
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.895e-03 median = -6.237e-05 stdev = 5.662e-03
Maximum Relativebarshadow_correction = 2.029e-03
Minimum Relativebarshadow_correction = -2.941e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 29? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 31
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.076e-03 median = -6.825e-05 stdev = 5.930e-03
Maximum Relativebarshadow_correction = 1.367e-03
Minimum Relativebarshadow_correction = -2.841e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 31? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 32
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.080e-03 median = -6.567e-05 stdev = 6.014e-03
Maximum Relativebarshadow_correction = 1.415e-03
Minimum Relativebarshadow_correction = -2.816e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 32? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 33
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.096e-03 median = -5.948e-05 stdev = 5.997e-03
Maximum Relativebarshadow_correction = 2.072e-03
Minimum Relativebarshadow_correction = -2.881e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 33? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 35
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.821e-03 median = -6.305e-05 stdev = 5.559e-03
Maximum Relativebarshadow_correction = 1.381e-03
Minimum Relativebarshadow_correction = -2.871e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 35? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 37
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.872e-03 median = -6.466e-05 stdev = 5.611e-03
Maximum Relativebarshadow_correction = 1.789e-03
Minimum Relativebarshadow_correction = -2.886e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 37? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 38
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.905e-03 median = -6.214e-05 stdev = 5.665e-03
Maximum Relativebarshadow_correction = 2.042e-03
Minimum Relativebarshadow_correction = -2.930e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 38? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 39
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.041e-03 median = -6.262e-05 stdev = 5.974e-03
Maximum Relativebarshadow_correction = 1.176e-03
Minimum Relativebarshadow_correction = -2.788e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 39? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 41
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.895e-03 median = -6.464e-05 stdev = 5.638e-03
Maximum Relativebarshadow_correction = 1.679e-03
Minimum Relativebarshadow_correction = -2.888e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 41? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 53
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 429.4560241214042 26.8976157966487 Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.168e-03 median = -6.273e-05 stdev = 6.031e-03
Maximum Relativebarshadow_correction = 1.761e-03
Minimum Relativebarshadow_correction = -2.824e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 53? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 54
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 426.2587209927364 26.903679487152 Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.166e-03 median = -6.667e-05 stdev = 6.019e-03
Maximum Relativebarshadow_correction = 1.585e-03
Minimum Relativebarshadow_correction = -2.815e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 54? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 1
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.022e-03 median = -6.624e-05 stdev = 5.944e-03
Maximum Relativebarshadow_correction = 1.209e-03
Minimum Relativebarshadow_correction = -2.936e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 1? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 2
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.998e-03 median = -6.297e-05 stdev = 5.904e-03
Maximum Relativebarshadow_correction = 1.782e-03
Minimum Relativebarshadow_correction = -2.922e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 2? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 3
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.885e-03 median = -6.028e-05 stdev = 5.643e-03
Maximum Relativebarshadow_correction = 1.703e-03
Minimum Relativebarshadow_correction = -2.868e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 3? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 4
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.939e-03 median = -5.839e-05 stdev = 5.720e-03
Maximum Relativebarshadow_correction = 1.743e-03
Minimum Relativebarshadow_correction = -2.875e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 4? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 5
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.070e-03 median = -6.476e-05 stdev = 6.004e-03
Maximum Relativebarshadow_correction = 1.519e-03
Minimum Relativebarshadow_correction = -2.908e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 5? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 12
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.984e-03 median = -5.549e-05 stdev = 5.783e-03
Maximum Relativebarshadow_correction = 1.209e-03
Minimum Relativebarshadow_correction = -2.851e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 12? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 13
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.069e-03 median = -5.870e-05 stdev = 5.989e-03
Maximum Relativebarshadow_correction = 1.744e-03
Minimum Relativebarshadow_correction = -2.906e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 13? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 20
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.930e-03 median = -5.659e-05 stdev = 5.715e-03
Maximum Relativebarshadow_correction = 1.938e-03
Minimum Relativebarshadow_correction = -2.900e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 20? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 22
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.064e-03 median = -6.398e-05 stdev = 5.940e-03
Maximum Relativebarshadow_correction = 2.135e-03
Minimum Relativebarshadow_correction = -2.875e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 22? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 23
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.853e-03 median = -6.602e-05 stdev = 5.603e-03
Maximum Relativebarshadow_correction = 1.440e-03
Minimum Relativebarshadow_correction = -2.852e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 23? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 24
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.015e-03 median = -6.569e-05 stdev = 5.841e-03
Maximum Relativebarshadow_correction = 1.784e-03
Minimum Relativebarshadow_correction = -2.835e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 24? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 28
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.845e-03 median = -6.542e-05 stdev = 5.594e-03
Maximum Relativebarshadow_correction = 1.789e-03
Minimum Relativebarshadow_correction = -2.914e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 28? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 30
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.026e-03 median = -6.313e-05 stdev = 5.846e-03
Maximum Relativebarshadow_correction = 1.936e-03
Minimum Relativebarshadow_correction = -2.923e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 30? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 34
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.782e-03 median = -6.478e-05 stdev = 5.480e-03
Maximum Relativebarshadow_correction = 1.829e-03
Minimum Relativebarshadow_correction = -2.852e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 17%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 34? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 36
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.849e-03 median = -7.007e-05 stdev = 5.567e-03
Maximum Relativebarshadow_correction = 1.244e-03
Minimum Relativebarshadow_correction = -2.806e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 36? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 40
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
717.8478879652469 26.906201801445103
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.881e-03 median = -7.021e-05 stdev = 5.577e-03
Maximum Relativebarshadow_correction = 1.526e-03
Minimum Relativebarshadow_correction = -2.796e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 40? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 42
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
736.5492365260191 26.907388994041778
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.978e-03 median = -6.346e-05 stdev = 5.746e-03
Maximum Relativebarshadow_correction = 2.072e-03
Minimum Relativebarshadow_correction = -2.791e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 42? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 43
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
689.9349073679869 26.898072914723645
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.042e-03 median = -6.358e-05 stdev = 5.829e-03
Maximum Relativebarshadow_correction = 1.221e-03
Minimum Relativebarshadow_correction = -2.884e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 43? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 44
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
679.9641907876581 26.902628246867557
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.989e-03 median = -6.600e-05 stdev = 5.740e-03
Maximum Relativebarshadow_correction = 1.406e-03
Minimum Relativebarshadow_correction = -2.910e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 44? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 45
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 675.2201065606389 26.909022673391682 Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.057e-03 median = -5.880e-05 stdev = 5.986e-03
Maximum Relativebarshadow_correction = 1.425e-03
Minimum Relativebarshadow_correction = -2.889e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 45? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 46
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 628.3528797143198 26.907387263499682 Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.046e-03 median = -6.672e-05 stdev = 5.988e-03
Maximum Relativebarshadow_correction = 1.793e-03
Minimum Relativebarshadow_correction = -2.787e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 46? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 47
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 566.0835177748166 26.901105539942886 Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.014e-03 median = -6.387e-05 stdev = 5.813e-03
Maximum Relativebarshadow_correction = 1.517e-03
Minimum Relativebarshadow_correction = -2.902e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 47? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 48
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 561.7669238150397 26.903533880206133 Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.998e-03 median = -6.612e-05 stdev = 5.783e-03
Maximum Relativebarshadow_correction = 1.651e-03
Minimum Relativebarshadow_correction = -2.877e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 48? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 49
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 510.5417110307708 26.89942162711025 Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.749e-03 median = -6.236e-05 stdev = 5.375e-03
Maximum Relativebarshadow_correction = 1.177e-03
Minimum Relativebarshadow_correction = -2.815e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 49? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 50
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 525.6815486602569 26.89982581835418 Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.171e-03 median = -6.651e-05 stdev = 6.060e-03
Maximum Relativebarshadow_correction = 1.648e-03
Minimum Relativebarshadow_correction = -2.837e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 50? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 51
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 518.2363133126122 26.906766488227944 Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.104e-03 median = -6.292e-05 stdev = 5.902e-03
Maximum Relativebarshadow_correction = 1.358e-03
Minimum Relativebarshadow_correction = -2.734e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 51? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 52
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. 507.37795245035966 26.908367350122248 Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.997e-03 median = -7.102e-05 stdev = 5.697e-03
Maximum Relativebarshadow_correction = 1.044e-03
Minimum Relativebarshadow_correction = -2.715e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 19%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 52? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 55
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.784e-03 median = -7.856e-05 stdev = 5.219e-03
Maximum Relativebarshadow_correction = 1.028e-03
Minimum Relativebarshadow_correction = -2.143e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 20%
-> 5xtheshold = 7%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 55? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 56
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -1.870e-03 median = -1.437e-04 stdev = 3.586e-03
Maximum Relativebarshadow_correction = 1.258e-03
Minimum Relativebarshadow_correction = -1.043e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 0%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 56? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 57
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -4.322e-03 median = -8.803e-05 stdev = 7.747e-03
Maximum Relativebarshadow_correction = 1.475e-03
Minimum Relativebarshadow_correction = -2.267e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 33%
-> 3xtheshold = 17%
-> 5xtheshold = 17%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 57? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
* Test of barshadow_correction for slitlet 6 PASSED.
* Test of barshadow_correction for slitlet 7 PASSED.
* Test of barshadow_correction for slitlet 8 PASSED.
* Test of barshadow_correction for slitlet 9 PASSED.
* Test of barshadow_correction for slitlet 10 PASSED.
* Test of barshadow_correction for slitlet 11 PASSED.
* Test of barshadow_correction for slitlet 14 PASSED.
* Test of barshadow_correction for slitlet 15 PASSED.
* Test of barshadow_correction for slitlet 16 PASSED.
* Test of barshadow_correction for slitlet 17 PASSED.
* Test of barshadow_correction for slitlet 18 PASSED.
* Test of barshadow_correction for slitlet 19 PASSED.
* Test of barshadow_correction for slitlet 21 PASSED.
* Test of barshadow_correction for slitlet 25 PASSED.
* Test of barshadow_correction for slitlet 26 PASSED.
* Test of barshadow_correction for slitlet 27 PASSED.
* Test of barshadow_correction for slitlet 29 PASSED.
* Test of barshadow_correction for slitlet 31 PASSED.
* Test of barshadow_correction for slitlet 32 PASSED.
* Test of barshadow_correction for slitlet 33 PASSED.
* Test of barshadow_correction for slitlet 35 PASSED.
* Test of barshadow_correction for slitlet 37 PASSED.
* Test of barshadow_correction for slitlet 38 PASSED.
* Test of barshadow_correction for slitlet 39 PASSED.
* Test of barshadow_correction for slitlet 41 PASSED.
* Test of barshadow_correction for slitlet 53 PASSED.
* Test of barshadow_correction for slitlet 54 PASSED.
* Test of barshadow_correction for slitlet 1 PASSED.
* Test of barshadow_correction for slitlet 2 PASSED.
* Test of barshadow_correction for slitlet 3 PASSED.
* Test of barshadow_correction for slitlet 4 PASSED.
* Test of barshadow_correction for slitlet 5 PASSED.
* Test of barshadow_correction for slitlet 12 PASSED.
* Test of barshadow_correction for slitlet 13 PASSED.
* Test of barshadow_correction for slitlet 20 PASSED.
* Test of barshadow_correction for slitlet 22 PASSED.
* Test of barshadow_correction for slitlet 23 PASSED.
* Test of barshadow_correction for slitlet 24 PASSED.
* Test of barshadow_correction for slitlet 28 PASSED.
* Test of barshadow_correction for slitlet 30 PASSED.
* Test of barshadow_correction for slitlet 34 PASSED.
* Test of barshadow_correction for slitlet 36 PASSED.
* Test of barshadow_correction for slitlet 40 PASSED.
* Test of barshadow_correction for slitlet 42 PASSED.
* Test of barshadow_correction for slitlet 43 PASSED.
* Test of barshadow_correction for slitlet 44 PASSED.
* Test of barshadow_correction for slitlet 45 PASSED.
* Test of barshadow_correction for slitlet 46 PASSED.
* Test of barshadow_correction for slitlet 47 PASSED.
* Test of barshadow_correction for slitlet 48 PASSED.
* Test of barshadow_correction for slitlet 49 PASSED.
* Test of barshadow_correction for slitlet 50 PASSED.
* Test of barshadow_correction for slitlet 51 PASSED.
* Test of barshadow_correction for slitlet 52 PASSED.
* Test of barshadow_correction for slitlet 55 PASSED.
* Test of barshadow_correction for slitlet 56 PASSED.
* Test of barshadow_correction for slitlet 57 PASSED.
*** Final result for barshadow test will be reported as PASSED ***
('* Barshadow validation test took ', '1.885963459809621 minutes to finish.')
Did barshadow validation test passed? True
/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope@2/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:181: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
# Quickly see if the test passed
print('These are the final results of the tests: ')
for key, val in results_dict.items():
print(key, val)
These are the final results of the tests: mos_prism_nrs1_uncal.fits True mos_prism_nrs2_uncal.fits skipped mos_g140m_line1_NRS1_uncal.fits True mos_g140m_line1_NRS2_uncal.fits True
Author: Maria A. Pena-Guerrero, Staff Scientist II - Systems Science Support, NIRSpec
Updated On: April/9/2021